line-scale-random.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. @-webkit-keyframes line-scale-party {
  2. 0% {
  3. -webkit-transform : scale(1);
  4. transform : scale(1);
  5. }
  6. 50% {
  7. -webkit-transform : scale(0.5);
  8. transform : scale(0.5);
  9. }
  10. 100% {
  11. -webkit-transform : scale(1);
  12. transform : scale(1);
  13. }
  14. }
  15. @-moz-keyframes line-scale-party {
  16. 0% {
  17. -moz-transform : scale(1);
  18. transform : scale(1);
  19. }
  20. 50% {
  21. -moz-transform : scale(0.5);
  22. transform : scale(0.5);
  23. }
  24. 100% {
  25. -moz-transform : scale(1);
  26. transform : scale(1);
  27. }
  28. }
  29. @-o-keyframes line-scale-party {
  30. 0% {
  31. -o-transform : scale(1);
  32. transform : scale(1);
  33. }
  34. 50% {
  35. -o-transform : scale(0.5);
  36. transform : scale(0.5);
  37. }
  38. 100% {
  39. -o-transform : scale(1);
  40. transform : scale(1);
  41. }
  42. }
  43. @keyframes line-scale-party {
  44. 0% {
  45. -webkit-transform : scale(1);
  46. -moz-transform : scale(1);
  47. -o-transform : scale(1);
  48. transform : scale(1);
  49. }
  50. 50% {
  51. -webkit-transform : scale(0.5);
  52. -moz-transform : scale(0.5);
  53. -o-transform : scale(0.5);
  54. transform : scale(0.5);
  55. }
  56. 100% {
  57. -webkit-transform : scale(1);
  58. -moz-transform : scale(1);
  59. -o-transform : scale(1);
  60. transform : scale(1);
  61. }
  62. }
  63. .line-scale-party > div:nth-child(1) {
  64. -webkit-animation-delay : 0.28s;
  65. -moz-animation-delay : 0.28s;
  66. -o-animation-delay : 0.28s;
  67. animation-delay : 0.28s;
  68. -webkit-animation-duration : 0.41s;
  69. -moz-animation-duration : 0.41s;
  70. -o-animation-duration : 0.41s;
  71. animation-duration : 0.41s;
  72. }
  73. .line-scale-party > div:nth-child(2) {
  74. -webkit-animation-delay : 0.45s;
  75. -moz-animation-delay : 0.45s;
  76. -o-animation-delay : 0.45s;
  77. animation-delay : 0.45s;
  78. -webkit-animation-duration : 0.45s;
  79. -moz-animation-duration : 0.45s;
  80. -o-animation-duration : 0.45s;
  81. animation-duration : 0.45s;
  82. }
  83. .line-scale-party > div:nth-child(3) {
  84. -webkit-animation-delay : 0.01s;
  85. -moz-animation-delay : 0.01s;
  86. -o-animation-delay : 0.01s;
  87. animation-delay : 0.01s;
  88. -webkit-animation-duration : 1.29s;
  89. -moz-animation-duration : 1.29s;
  90. -o-animation-duration : 1.29s;
  91. animation-duration : 1.29s;
  92. }
  93. .line-scale-party > div:nth-child(4) {
  94. -webkit-animation-delay : 0.66s;
  95. -moz-animation-delay : 0.66s;
  96. -o-animation-delay : 0.66s;
  97. animation-delay : 0.66s;
  98. -webkit-animation-duration : 1.03s;
  99. -moz-animation-duration : 1.03s;
  100. -o-animation-duration : 1.03s;
  101. animation-duration : 1.03s;
  102. }
  103. .line-scale-party > div {
  104. background-color : #55595C;
  105. width : 4px;
  106. height : 3.45rem;
  107. border-radius : 2px;
  108. margin : 2px;
  109. -webkit-animation-fill-mode : both;
  110. -moz-animation-fill-mode : both;
  111. -o-animation-fill-mode : both;
  112. animation-fill-mode : both;
  113. display : inline-block;
  114. -webkit-animation-name : line-scale-party;
  115. -moz-animation-name : line-scale-party;
  116. -o-animation-name : line-scale-party;
  117. animation-name : line-scale-party;
  118. -webkit-animation-iteration-count : infinite;
  119. -moz-animation-iteration-count : infinite;
  120. -o-animation-iteration-count : infinite;
  121. animation-iteration-count : infinite;
  122. -webkit-animation-delay : 0;
  123. -moz-animation-delay : 0;
  124. -o-animation-delay : 0;
  125. animation-delay : 0;
  126. }