asimryu

css animation - 1(20150910)

Sep 10th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>CSS3 Animation</title>
  6. <style>
  7. body {
  8. animation-name: example;
  9. animation-duration: 2s;
  10. animation-iteration-count: infinite;
  11. animation-direction: alternate;
  12. }
  13. img { border-radius:50%; }
  14. img:hover {
  15. animation-name: example2;
  16. animation-duration: 1s;
  17. animation-iteration-count: infinite;
  18. animation-direction: alternate;
  19. }
  20. @keyframes example {
  21. from { background-color:red; }
  22. to { background-color:blue; }
  23. }
  24. @keyframes example2 {
  25. 0% { transform: rotate(0deg); }
  26. 50% { width:500px; height:500px; }
  27. 100% { transform: rotate(360deg); }
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <img src="http://lorempixel.com/300/300" width="300" height="300">
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment