Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6.     width: 100px;
  7.     height: 100px;
  8.     background: red;
  9.     position: relative;
  10.     -webkit-animation: mymove 3s infinite; /* Safari 4.0 - 8.0 */
  11.     animation: mymove 3s infinite;
  12. }
  13.  
  14. /* Safari 4.0 - 8.0 */
  15. @-webkit-keyframes mymove {
  16.     0%   {top: 0px;}
  17.     60%  {top: 10px;}
  18.     100% {top: 0px;}
  19. }
  20.  
  21. /* Standard syntax */
  22. @keyframes mymove {
  23.     0%   {top: 0px;}
  24.     60%  {top: 10px;}
  25.     100% {top: 0px;}
  26. }
  27. </style>
  28. </head>
  29. <body>
  30.  
  31. <p><strong>Note:</strong> The @keyframes rule is not supported in Internet Explorer 9 and earlier versions.</p>
  32.  
  33. <div></div>
  34.  
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement