123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- BODY {
- background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 52%), -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 52%);
- background: linear-gradient(45deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 52%), linear-gradient(-45deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 52%);
- -webkit-background-size: 1em 1em;
- background-size: 1em 1em;
- background-color: #000;
- }
- .l-wrapper {
- position: absolute;
- width: 300px;
- height: 200px;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- margin: auto;
- text-align: center;
- z-index: 9999;
- }
- svg {
- height: 60px;
- width: 60px;
- margin: 0 2em 2em;
- overflow: visible;
- /* border: 1px solid red; */
- }
- .g-circles {
- -webkit-transform: scale(0.9) translate(7px, 7px);
- -ms-transform: scale(0.9) translate(7px, 7px);
- transform: scale(0.9) translate(7px, 7px);
- }
- circle {
- fill: #0e89fc;
- fill-opacity: 0;
- -webkit-animation: opacity 1.2s linear infinite;
- animation: opacity 1.2s linear infinite;
- }
- circle:nth-child(12n + 1) {
- -webkit-animation-delay: -0.1s;
- animation-delay: -0.1s;
- }
- circle:nth-child(12n + 2) {
- -webkit-animation-delay: -0.2s;
- animation-delay: -0.2s;
- }
- circle:nth-child(12n + 3) {
- -webkit-animation-delay: -0.3s;
- animation-delay: -0.3s;
- }
- circle:nth-child(12n + 4) {
- -webkit-animation-delay: -0.4s;
- animation-delay: -0.4s;
- }
- circle:nth-child(12n + 5) {
- -webkit-animation-delay: -0.5s;
- animation-delay: -0.5s;
- }
- circle:nth-child(12n + 6) {
- -webkit-animation-delay: -0.6s;
- animation-delay: -0.6s;
- }
- circle:nth-child(12n + 7) {
- -webkit-animation-delay: -0.7s;
- animation-delay: -0.7s;
- }
- circle:nth-child(12n + 8) {
- -webkit-animation-delay: -0.8s;
- animation-delay: -0.8s;
- }
- circle:nth-child(12n + 9) {
- -webkit-animation-delay: -0.9s;
- animation-delay: -0.9s;
- }
- circle:nth-child(12n + 10) {
- -webkit-animation-delay: -1s;
- animation-delay: -1s;
- }
- circle:nth-child(12n + 11) {
- -webkit-animation-delay: -1.1s;
- animation-delay: -1.1s;
- }
- circle:nth-child(12n + 12) {
- -webkit-animation-delay: -1.2s;
- animation-delay: -1.2s;
- }
- .g-circles--v2 circle {
- fill-opacity: 0;
- stroke-opacity: 0;
- stroke-width: 1;
- stroke: yellowgreen;
- -webkit-animation-name: opacity-stroke, colors, colors-stroke, transform-2;
- animation-name: opacity-stroke, colors, colors-stroke, transform-2;
- }
- .g-circles--v3 circle {
- fill-opacity: 1;
- -webkit-animation-name: opacity, colors;
- animation-name: opacity, colors;
- }
- .g-circles--v4 circle {
- fill-opacity: 1;
- fill: orange;
- -webkit-transform-origin: 60px 60px;
- -ms-transform-origin: 60px 60px;
- transform-origin: 60px 60px;
- -webkit-animation-name: opacity, colors-3, transform;
- animation-name: opacity, colors-3, transform;
- }
- @-webkit-keyframes opacity {
- 3% {
- fill-opacity: 1;
- }
- 75% {
- fill-opacity: 0;
- }
- }
- @keyframes opacity {
- 3% {
- fill-opacity: 1;
- }
- 75% {
- fill-opacity: 0;
- }
- }
- @-webkit-keyframes opacity-stroke {
- 10% {
- stroke-opacity: 1;
- }
- 85% {
- stroke-opacity: 0;
- }
- }
- @keyframes opacity-stroke {
- 10% {
- stroke-opacity: 1;
- }
- 85% {
- stroke-opacity: 0;
- }
- }
- @-webkit-keyframes colors {
- 0% {
- fill: yellowgreen;
- }
- 10% {
- fill: gold;
- }
- 75% {
- fill: crimson;
- }
- }
- @keyframes colors {
- 0% {
- fill: yellowgreen;
- }
- 10% {
- fill: gold;
- }
- 75% {
- fill: crimson;
- }
- }
- @-webkit-keyframes colors-stroke {
- 0% {
- stroke: yellowgreen;
- }
- 10% {
- stroke: gold;
- }
- 75% {
- stroke: crimson;
- }
- }
- @keyframes colors-stroke {
- 0% {
- stroke: yellowgreen;
- }
- 10% {
- stroke: gold;
- }
- 75% {
- stroke: crimson;
- }
- }
- @-webkit-keyframes colors-2 {
- 0% {
- fill: yellow;
- }
- 50% {
- fill: red;
- }
- 65% {
- fill: orangered;
- }
- 95% {
- fill: gold;
- }
- }
- @keyframes colors-2 {
- 0% {
- fill: yellow;
- }
- 50% {
- fill: red;
- }
- 65% {
- fill: orangered;
- }
- 95% {
- fill: gold;
- }
- }
- @-webkit-keyframes colors-3 {
- 0% {
- fill: yellowgreen;
- }
- 50% {
- fill: turquoise;
- }
- 65% {
- fill: yellow;
- }
- 95% {
- fill: orange;
- }
- }
- @keyframes colors-3 {
- 0% {
- fill: yellowgreen;
- }
- 50% {
- fill: turquoise;
- }
- 65% {
- fill: yellow;
- }
- 95% {
- fill: orange;
- }
- }
- @-webkit-keyframes transform {
- 10% {
- -webkit-transform: scale(0.75);
- transform: scale(0.75);
- }
- }
- @keyframes transform {
- 10% {
- -webkit-transform: scale(0.75);
- transform: scale(0.75);
- }
- }
- @-webkit-keyframes transform-2 {
- 40% {
- -webkit-transform: scale(0.85);
- transform: scale(0.85);
- }
- 60% {
- stroke-width: 20;
- }
- }
- @keyframes transform-2 {
- 40% {
- -webkit-transform: scale(0.85);
- transform: scale(0.85);
- }
- 60% {
- stroke-width: 20;
- }
- }
|