Advertisement
Guest User

Untitled

a guest
May 25th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. <style>
  2. #loadingProgressG{
  3. width:64px;
  4. height:5px;
  5. overflow:hidden;
  6. background-color:#EBEBEB;
  7. -moz-border-radius:3px;
  8. -webkit-border-radius:3px;
  9. -ms-border-radius:3px;
  10. -o-border-radius:3px;
  11. border-radius:3px;
  12. }
  13.  
  14. .loadingProgressG{
  15. background-color:#4A8EE1;
  16. margin-top:0;
  17. margin-left:-64px;
  18. -moz-animation-name:bounce_loadingProgressG;
  19. -moz-animation-duration:2.7s;
  20. -moz-animation-iteration-count:infinite;
  21. -moz-animation-timing-function:linear;
  22. -webkit-animation-name:bounce_loadingProgressG;
  23. -webkit-animation-duration:2.7s;
  24. -webkit-animation-iteration-count:infinite;
  25. -webkit-animation-timing-function:linear;
  26. -ms-animation-name:bounce_loadingProgressG;
  27. -ms-animation-duration:2.7s;
  28. -ms-animation-iteration-count:infinite;
  29. -ms-animation-timing-function:linear;
  30. -o-animation-name:bounce_loadingProgressG;
  31. -o-animation-duration:2.7s;
  32. -o-animation-iteration-count:infinite;
  33. -o-animation-timing-function:linear;
  34. animation-name:bounce_loadingProgressG;
  35. animation-duration:2.7s;
  36. animation-iteration-count:infinite;
  37. animation-timing-function:linear;
  38. width:64px;
  39. height:5px;
  40. }
  41.  
  42. @-moz-keyframes bounce_loadingProgressG{
  43. 0%{
  44. margin-left:-64px;
  45. }
  46.  
  47. 100%{
  48. margin-left:64px;
  49. }
  50.  
  51. }
  52.  
  53. @-webkit-keyframes bounce_loadingProgressG{
  54. 0%{
  55. margin-left:-64px;
  56. }
  57.  
  58. 100%{
  59. margin-left:64px;
  60. }
  61.  
  62. }
  63.  
  64. @-ms-keyframes bounce_loadingProgressG{
  65. 0%{
  66. margin-left:-64px;
  67. }
  68.  
  69. 100%{
  70. margin-left:64px;
  71. }
  72.  
  73. }
  74.  
  75. @-o-keyframes bounce_loadingProgressG{
  76. 0%{
  77. margin-left:-64px;
  78. }
  79.  
  80. 100%{
  81. margin-left:64px;
  82. }
  83.  
  84. }
  85.  
  86. @keyframes bounce_loadingProgressG{
  87. 0%{
  88. margin-left:-64px;
  89. }
  90.  
  91. 100%{
  92. margin-left:64px;
  93. }
  94.  
  95. }
  96.  
  97. </style>
  98. <div id="loadingProgressG">
  99. <div id="loadingProgressG_1" class="loadingProgressG">
  100. </div>
  101. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement