line-scale-pulse-out.css 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. @-webkit-keyframes line-scale-pulse-out {
  2. 0% {
  3. -webkit-transform : scaley(1);
  4. transform : scaley(1);
  5. }
  6. 50% {
  7. -webkit-transform : scaley(0.4);
  8. transform : scaley(0.4);
  9. }
  10. 100% {
  11. -webkit-transform : scaley(1);
  12. transform : scaley(1);
  13. }
  14. }
  15. @-moz-keyframes line-scale-pulse-out {
  16. 0% {
  17. -moz-transform : scaley(1);
  18. transform : scaley(1);
  19. }
  20. 50% {
  21. -moz-transform : scaley(0.4);
  22. transform : scaley(0.4);
  23. }
  24. 100% {
  25. -moz-transform : scaley(1);
  26. transform : scaley(1);
  27. }
  28. }
  29. @-o-keyframes line-scale-pulse-out {
  30. 0% {
  31. -o-transform : scaley(1);
  32. transform : scaley(1);
  33. }
  34. 50% {
  35. -o-transform : scaley(0.4);
  36. transform : scaley(0.4);
  37. }
  38. 100% {
  39. -o-transform : scaley(1);
  40. transform : scaley(1);
  41. }
  42. }
  43. @keyframes line-scale-pulse-out {
  44. 0% {
  45. -webkit-transform : scaley(1);
  46. -moz-transform : scaley(1);
  47. -o-transform : scaley(1);
  48. transform : scaley(1);
  49. }
  50. 50% {
  51. -webkit-transform : scaley(0.4);
  52. -moz-transform : scaley(0.4);
  53. -o-transform : scaley(0.4);
  54. transform : scaley(0.4);
  55. }
  56. 100% {
  57. -webkit-transform : scaley(1);
  58. -moz-transform : scaley(1);
  59. -o-transform : scaley(1);
  60. transform : scaley(1);
  61. }
  62. }
  63. .line-scale-pulse-out > div {
  64. background-color : #55595C;
  65. width : 4px;
  66. height : 3.45rem;
  67. border-radius : 2px;
  68. margin : 2px;
  69. -webkit-animation-fill-mode : both;
  70. -moz-animation-fill-mode : both;
  71. -o-animation-fill-mode : both;
  72. animation-fill-mode : both;
  73. display : inline-block;
  74. -webkit-animation : line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  75. -moz-animation : line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  76. -o-animation : line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  77. animation : line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  78. }
  79. .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
  80. -webkit-animation-delay : -0.4s !important;
  81. -moz-animation-delay : -0.4s !important;
  82. -o-animation-delay : -0.4s !important;
  83. animation-delay : -0.4s !important;
  84. }
  85. .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
  86. -webkit-animation-delay : -0.2s !important;
  87. -moz-animation-delay : -0.2s !important;
  88. -o-animation-delay : -0.2s !important;
  89. animation-delay : -0.2s !important;
  90. }