Advertisement
englishextra

circularG.css

Mar 15th, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.28 KB | None | 0 0
  1. /*!
  2.  * cssload.net/#sthash.zjPWF4Wm.dpuf
  3.  * pastebin.com/zdQKPrgM
  4.  */
  5. #circularG {
  6.     width: 128px;
  7.     height: 128px;
  8.     position: absolute;
  9.     top: 50%;
  10.     left: 50%;
  11.     margin-top: -58px;
  12.     margin-left: -58px;
  13. }
  14. .circularG {
  15.     position: absolute;
  16.     background-color: #FFF;
  17.     width: 29px;
  18.     height: 29px;
  19.     -moz-border-radius: 19px;
  20.     -moz-animation-name: bounce_circularG;
  21.     -moz-animation-duration: 1.04s;
  22.     -moz-animation-iteration-count: infinite;
  23.     -moz-animation-direction: linear;
  24.     -webkit-border-radius: 19px;
  25.     -webkit-animation-name: bounce_circularG;
  26.     -webkit-animation-duration: 1.04s;
  27.     -webkit-animation-iteration-count: infinite;
  28.     -webkit-animation-direction: linear;
  29.     -ms-border-radius: 19px;
  30.     -ms-animation-name: bounce_circularG;
  31.     -ms-animation-duration: 1.04s;
  32.     -ms-animation-iteration-count: infinite;
  33.     -ms-animation-direction: linear;
  34.     -o-border-radius: 19px;
  35.     -o-animation-name: bounce_circularG;
  36.     -o-animation-duration: 1.04s;
  37.     -o-animation-iteration-count: infinite;
  38.     -o-animation-direction: linear;
  39.     border-radius: 19px;
  40.     animation-name: bounce_circularG;
  41.     animation-duration: 1.04s;
  42.     animation-iteration-count: infinite;
  43.     animation-direction: linear;
  44. }
  45. #circularG_1 {
  46.     left: 0;
  47.     top: 50px;
  48.     -moz-animation-delay: 0.39s;
  49.     -webkit-animation-delay: 0.39s;
  50.     -ms-animation-delay: 0.39s;
  51.     -o-animation-delay: 0.39s;
  52.     animation-delay: 0.39s;
  53. }
  54. #circularG_2 {
  55.     left: 14px;
  56.     top: 14px;
  57.     -moz-animation-delay: 0.52s;
  58.     -webkit-animation-delay: 0.52s;
  59.     -ms-animation-delay: 0.52s;
  60.     -o-animation-delay: 0.52s;
  61.     animation-delay: 0.52s;
  62. }
  63. #circularG_3 {
  64.     top: 0;
  65.     left: 50px;
  66.     -moz-animation-delay: 0.65s;
  67.     -webkit-animation-delay: 0.65s;
  68.     -ms-animation-delay: 0.65s;
  69.     -o-animation-delay: 0.65s;
  70.     animation-delay: 0.65s;
  71. }
  72. #circularG_4 {
  73.     right: 14px;
  74.     top: 14px;
  75.     -moz-animation-delay: 0.78s;
  76.     -webkit-animation-delay: 0.78s;
  77.     -ms-animation-delay: 0.78s;
  78.     -o-animation-delay: 0.78s;
  79.     animation-delay: 0.78s;
  80. }
  81. #circularG_5 {
  82.     right: 0;
  83.     top: 50px;
  84.     -moz-animation-delay: 0.91s;
  85.     -webkit-animation-delay: 0.91s;
  86.     -ms-animation-delay: 0.91s;
  87.     -o-animation-delay: 0.91s;
  88.     animation-delay: 0.91s;
  89. }
  90. #circularG_6 {
  91.     right: 14px;
  92.     bottom: 14px;
  93.     -moz-animation-delay: 1.04s;
  94.     -webkit-animation-delay: 1.04s;
  95.     -ms-animation-delay: 1.04s;
  96.     -o-animation-delay: 1.04s;
  97.     animation-delay: 1.04s;
  98. }
  99. #circularG_7 {
  100.     left: 50px;
  101.     bottom: 0;
  102.     -moz-animation-delay: 1.17s;
  103.     -webkit-animation-delay: 1.17s;
  104.     -ms-animation-delay: 1.17s;
  105.     -o-animation-delay: 1.17s;
  106.     animation-delay: 1.17s;
  107. }
  108. #circularG_8 {
  109.     left: 14px;
  110.     bottom: 14px;
  111.     -moz-animation-delay: 1.3s;
  112.     -webkit-animation-delay: 1.3s;
  113.     -ms-animation-delay: 1.3s;
  114.     -o-animation-delay: 1.3s;
  115.     animation-delay: 1.3s;
  116. }
  117. @-moz-keyframes bounce_circularG {
  118.     0% {
  119.         -moz-transform: scale(1);
  120.     }
  121.     100% {
  122.         -moz-transform: scale(.3);
  123.     }
  124. }
  125. @-webkit-keyframes bounce_circularG {
  126.     0% {
  127.         -webkit-transform: scale(1);
  128.     }
  129.     100% {
  130.         -webkit-transform: scale(.3);
  131.     }
  132. }
  133. @-ms-keyframes bounce_circularG {
  134.     0% {
  135.         -ms-transform: scale(1);
  136.     }
  137.     100% {
  138.         -ms-transform: scale(.3);
  139.     }
  140. }
  141. @-o-keyframes bounce_circularG {
  142.     0% {
  143.         -o-transform: scale(1);
  144.     }
  145.     100% {
  146.         -o-transform: scale(.3);
  147.     }
  148. }
  149. @keyframes bounce_circularG {
  150.     0% {
  151.         transform: scale(1);
  152.     }
  153.     100% {
  154.         transform: scale(.3);
  155.     }
  156. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement