| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- @-webkit-keyframes ball-spin-loader {
- 75% {
- opacity : 0.2;
- }
- 100% {
- opacity : 1;
- }
- }
- @-moz-keyframes ball-spin-loader {
- 75% {
- opacity : 0.2;
- }
- 100% {
- opacity : 1;
- }
- }
- @-o-keyframes ball-spin-loader {
- 75% {
- opacity : 0.2;
- }
- 100% {
- opacity : 1;
- }
- }
- @keyframes ball-spin-loader {
- 75% {
- opacity : 0.2;
- }
- 100% {
- opacity : 1;
- }
- }
- .ball-spin-loader {
- position : relative;
- }
- .ball-spin-loader > span:nth-child(1) {
- top : 45px;
- right : 0;
- -webkit-animation : ball-spin-loader 2s 0.9s infinite linear;
- -moz-animation : ball-spin-loader 2s 0.9s infinite linear;
- -o-animation : ball-spin-loader 2s 0.9s infinite linear;
- animation : ball-spin-loader 2s 0.9s infinite linear;
- }
- .ball-spin-loader > span:nth-child(2) {
- top : 30.68182px;
- right : 30.68182px;
- -webkit-animation : ball-spin-loader 2s 1.8s infinite linear;
- -moz-animation : ball-spin-loader 2s 1.8s infinite linear;
- -o-animation : ball-spin-loader 2s 1.8s infinite linear;
- animation : ball-spin-loader 2s 1.8s infinite linear;
- }
- .ball-spin-loader > span:nth-child(3) {
- top : 0;
- right : 45px;
- -webkit-animation : ball-spin-loader 2s 2.7s infinite linear;
- -moz-animation : ball-spin-loader 2s 2.7s infinite linear;
- -o-animation : ball-spin-loader 2s 2.7s infinite linear;
- animation : ball-spin-loader 2s 2.7s infinite linear;
- }
- .ball-spin-loader > span:nth-child(4) {
- top : -30.68182px;
- right : 30.68182px;
- -webkit-animation : ball-spin-loader 2s 3.6s infinite linear;
- -moz-animation : ball-spin-loader 2s 3.6s infinite linear;
- -o-animation : ball-spin-loader 2s 3.6s infinite linear;
- animation : ball-spin-loader 2s 3.6s infinite linear;
- }
- .ball-spin-loader > span:nth-child(5) {
- top : -45px;
- right : 0;
- -webkit-animation : ball-spin-loader 2s 4.5s infinite linear;
- -moz-animation : ball-spin-loader 2s 4.5s infinite linear;
- -o-animation : ball-spin-loader 2s 4.5s infinite linear;
- animation : ball-spin-loader 2s 4.5s infinite linear;
- }
- .ball-spin-loader > span:nth-child(6) {
- top : -30.68182px;
- right : -30.68182px;
- -webkit-animation : ball-spin-loader 2s 5.4s infinite linear;
- -moz-animation : ball-spin-loader 2s 5.4s infinite linear;
- -o-animation : ball-spin-loader 2s 5.4s infinite linear;
- animation : ball-spin-loader 2s 5.4s infinite linear;
- }
- .ball-spin-loader > span:nth-child(7) {
- top : 0;
- right : -45px;
- -webkit-animation : ball-spin-loader 2s 6.3s infinite linear;
- -moz-animation : ball-spin-loader 2s 6.3s infinite linear;
- -o-animation : ball-spin-loader 2s 6.3s infinite linear;
- animation : ball-spin-loader 2s 6.3s infinite linear;
- }
- .ball-spin-loader > span:nth-child(8) {
- top : 30.68182px;
- right : -30.68182px;
- -webkit-animation : ball-spin-loader 2s 7.2s infinite linear;
- -moz-animation : ball-spin-loader 2s 7.2s infinite linear;
- -o-animation : ball-spin-loader 2s 7.2s infinite linear;
- animation : ball-spin-loader 2s 7.2s infinite linear;
- }
- .ball-spin-loader > div {
- -webkit-animation-fill-mode : both;
- -moz-animation-fill-mode : both;
- -o-animation-fill-mode : both;
- animation-fill-mode : both;
- position : absolute;
- width : 15px;
- height : 15px;
- border-radius : 100%;
- background : green;
- }
|