Advertisement
Guest User

Untitled

a guest
Feb 13th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5.     <meta charset="UTF-8">
  6.         <style type="text/css">
  7.  
  8.         #myImg
  9.         {
  10.         width: 150px;
  11.         height: auto;
  12.         position: absolute;
  13.         animation: myAnimation ease 5s 1s 100;
  14.         opacity: 100;
  15.         }
  16.  
  17.         @keyframes myAnimation {
  18.         0% {left: 0px;top:0px;}
  19.         25% {left:0px;top:400px;}
  20.         50% {left:400px;top:400px;}
  21.         75% {left:400px;top:0px;}
  22.         100% {left:0px;top:0px;}
  23.         }
  24.         </style>
  25.  
  26.  
  27. </head>
  28. <body>
  29. <div>
  30.     <a><img id="myImg" src="Ball.png"></a>
  31. </div>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement