st-trigger-button.css
34 lines
| 1 | .suretrigger_button { |
| 2 | position: relative; |
| 3 | } |
| 4 | |
| 5 | .st_trigger_button_loading:after { |
| 6 | content: ''; |
| 7 | position: absolute; |
| 8 | right: 6px; |
| 9 | top: 50%; |
| 10 | animation: rotate360 .5s infinite linear, exist .1s forwards ease; |
| 11 | } |
| 12 | |
| 13 | .st_trigger_button_loading:before { |
| 14 | content: ""; |
| 15 | border-radius: 50%; |
| 16 | right: 0px; |
| 17 | top: 50%; |
| 18 | position: absolute; |
| 19 | border-right: 3px solid #ffffff; |
| 20 | animation: rotate360 .5s infinite linear, exist .1s forwards ease ; |
| 21 | } |
| 22 | |
| 23 | @keyframes rotate360 { |
| 24 | 100% { |
| 25 | transform: rotate(360deg); |
| 26 | } |
| 27 | } |
| 28 | @keyframes exist { |
| 29 | 100% { |
| 30 | width: 15px; |
| 31 | height: 15px; |
| 32 | margin: -8px 5px 0 0; |
| 33 | } |
| 34 | } |