animate.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. @charset "utf-8";
  2. /* CSS Document */
  3. /*动画效果*/
  4. .my01{animation:my01 0.5s linear;-moz-animation:my01 0.5s linear;-o-animation:my01 0.5s linear;-webkit-animation:my01 0.5s linear;}
  5. @keyframes my01
  6. {
  7. 0%{top:-100%}
  8. 100%{ top:0}
  9. }
  10. @-o-keyframes my01
  11. {
  12. 0%{top:-100%}
  13. 100%{ top:0}
  14. }
  15. @-webkit-keyframes my01
  16. {
  17. 0%{top:-100%}
  18. 100%{ top:0}
  19. }
  20. @-moz-keyframes my01
  21. {
  22. 0%{top:-100%}
  23. 100%{ top:0}
  24. }
  25. .my02{animation:my02 0.5s linear;-moz-animation:my02 0.5s linear;-o-animation:my02 0.5s linear;-webkit-animation:my02 0.5s linear;}
  26. @keyframes my02
  27. {
  28. 100%{ top:-100%}
  29. }
  30. @-o-keyframes my02
  31. {
  32. 100%{ top:-100%}
  33. }
  34. @-webkit-keyframes my02
  35. {
  36. 100%{ top:-100%}
  37. }
  38. @-moz-keyframes my02
  39. {
  40. 100%{ top:-100%}
  41. }
  42. .suoxiao{animation:suoxiao 0.5s linear;-moz-animation:suoxiao 0.5s linear;-o-animation:suoxiao 0.5s linear;-webkit-animation:suoxiao 0.5s linear;}
  43. @keyframes suoxiao
  44. {
  45. 0%{transform:scale(2,2)}
  46. 100%{transform:scale(1,1)}
  47. }
  48. @-o-keyframes suoxiao
  49. {
  50. 0%{-o-transform:scale(2,2)}
  51. 100%{ -o-transform:scale(1,1)}
  52. }
  53. @-webkit-keyframes suoxiao
  54. {
  55. 0%{-webkit-transform:scale(2,2)}
  56. 100%{-webkit-transform:scale(1,1)}
  57. }
  58. @-moz-keyframes suoxiao
  59. {
  60. 0%{-moz-transform:scale(2,2)}
  61. 100%{ -moz-transform:scale(1,1)}
  62. }
  63. .fd{animation:fd 0.5s linear;-moz-animation:fd 0.5s linear;-o-animation:fd 0.5s linear;-webkit-animation:fd 0.5s linear;}
  64. @keyframes fd
  65. {
  66. 100%{ transform:scale(2,2)}
  67. }
  68. @-o-keyframes fd
  69. {
  70. 100%{-o-transform:scale(2,2)}
  71. }
  72. @-webkit-keyframes fd
  73. {
  74. 100%{-webkit-transform:scale(2,2)}
  75. }
  76. @-moz-keyframes fd
  77. {
  78. 100%{-moz-transform:scale(2,2)}
  79. }
  80. .xuan{animation:xuan 1s linear infinite;-moz-animation:xuan 1s linear infinite;-o-animation:xuan 1s linear infinite;-webkit-animation:xuan 1s linear infinite;}
  81. @keyframes xuan
  82. 100%{transform:rotate(360deg)}
  83. }
  84. @-o-keyframes xuan
  85. {
  86. 100%{-o-transform:rotate(360deg)}
  87. }
  88. @-webkit-keyframes xuan
  89. {
  90. 100%{-webkit-transform:rotate(360deg)}
  91. }
  92. @-moz-keyframes xuan
  93. {
  94. 100%{-moz-transform:rotate(360deg)}
  95. }