animation.css 558 B

123456789101112131415161718
  1. .example .animation-example {
  2. display: inline-block;
  3. cursor: pointer; }
  4. .animation-delay-example button {
  5. -webkit-animation-name: fade-scale-02;
  6. animation-name: fade-scale-02;
  7. -webkit-animation-duration: .5s;
  8. animation-duration: .5s;
  9. -webkit-animation-timing-function: ease-out;
  10. animation-timing-function: ease-out;
  11. -webkit-animation-fill-mode: both;
  12. animation-fill-mode: both; }
  13. .touch .animation-delay-example:not(.hover) button,
  14. .animation-delay-example:not(:hover) button {
  15. -webkit-animation-name: none;
  16. animation-name: none; }