asimryu

20150702-1 css animation

Jul 1st, 2015
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.47 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="ko">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>css animation</title>
  6. <style>
  7.     img {
  8.         border-radius: 100px;
  9.         animation-duration: 3s;
  10.         animation-iteration-count: infinite;
  11.         animation-direction: alternate-reverse;
  12.   animation-name: myani;
  13.     }
  14.     @keyframes myani {
  15.             from {
  16.                     transform:rotate(0deg);
  17.             }
  18.             to {
  19.                     transform:rotate(360deg);
  20.             }
  21.     }
  22. </style>
  23. </head>
  24. <body>
  25. <img src="http://lorempixel.com/200/200">
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment