keyframes.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. @keyframes identifier {
  2. 0% {
  3. top: 0;
  4. left: 0;
  5. }
  6. 30% {
  7. top: 50px;
  8. }
  9. 68%,
  10. 72% {
  11. left: 50px;
  12. }
  13. 100% {
  14. top: 100px;
  15. left: 100%;
  16. }
  17. }
  18. @keyframes identifier {
  19. 0%{top:0;left:0;}
  20. 30%{top: 50px;}
  21. 68%,72%{left: 50px;}
  22. 100%{top: 100px; left: 100%;}
  23. }
  24. @keyframes identifier{
  25. 0% {
  26. top:0;
  27. left:0;
  28. }
  29. 30% {
  30. top: 50px;
  31. }
  32. 68%, 72% {
  33. left: 50px;
  34. }
  35. 100% {
  36. top: 100px;
  37. left: 100%;
  38. }
  39. }
  40. @keyframes identifier {
  41. 0% {
  42. top:0;
  43. left:0;
  44. }
  45. 30% {
  46. top: 50px;
  47. }
  48. 68%, 72% {
  49. left: 50px;
  50. }
  51. 100% {
  52. top: 100px;
  53. left: 100%;
  54. }
  55. }
  56. @keyframes
  57. identifier
  58. {
  59. 0%
  60. {
  61. top
  62. :
  63. 0;
  64. left
  65. :
  66. 0
  67. ;
  68. }
  69. 30%
  70. {
  71. top
  72. :
  73. 50px
  74. ;
  75. }
  76. 68%
  77. ,
  78. 72%
  79. {
  80. left
  81. :
  82. 50px
  83. ;
  84. }
  85. 100%
  86. {
  87. top
  88. :
  89. 100px
  90. ;
  91. left
  92. :
  93. 100%
  94. ;
  95. }
  96. }
  97. @keyframes
  98. identifier
  99. {
  100. 0%
  101. {
  102. top
  103. :
  104. 0
  105. ;
  106. left
  107. :
  108. 0
  109. ;
  110. }
  111. 30%
  112. {
  113. top
  114. :
  115. 50px
  116. ;
  117. }
  118. 68%
  119. ,
  120. 72%
  121. {
  122. left
  123. :
  124. 50px
  125. ;
  126. }
  127. 100%
  128. {
  129. top
  130. :
  131. 100px
  132. ;
  133. left
  134. :
  135. 100%
  136. ;
  137. }
  138. }
  139. @keyframes identifier {
  140. from {
  141. margin-top: 50px;
  142. }
  143. to {
  144. margin-top: 100px;
  145. }
  146. }
  147. @keyframes
  148. identifier
  149. {
  150. from
  151. {
  152. margin-top: 50px;
  153. }
  154. to
  155. {
  156. margin-top: 100px;
  157. }
  158. }
  159. @keyframes
  160. identifier
  161. {
  162. from
  163. {
  164. margin-top: 50px;
  165. }
  166. to
  167. {
  168. margin-top: 100px;
  169. }
  170. }
  171. @-webkit-keyframes identifier {
  172. 0% { opacity: 0; top: 4rem; }
  173. 100% { opacity: 1; top: 0; }
  174. }