Hakunin

SKI_V7_2

Dec 5th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Title</title>
  6.     <style>
  7.         body{
  8.             background-image: url("space/stars-06.jpg");
  9.             background-size: cover;
  10.         }
  11.  
  12.         img{
  13.             position: relative;
  14.             animation-name: pomeraj;
  15.             animation-duration: 10s;
  16.             animation-iteration-count: infinite;
  17.  
  18.         }
  19.  
  20.         @keyframes pomeraj {
  21.             0%{top: 50px; left: 50px; transform: rotate(90deg)}
  22.             20%{top: 300px; left: 311px; transform: rotate(12deg)}
  23.             40%{top: 125px; left: 11px; transform: rotate(-129deg) }
  24.             60%{top: 600px; left: 300px; transform: rotate(22deg)}
  25.             80%{top: 222px; left: 99px; transform: rotate(122deg)}
  26.             100%{top: 100px; left: 600px; transform: rotate(400deg)}
  27.         }
  28.  
  29.     </style>
  30. </head>
  31. <body>
  32.     <img src="space/spaceship.png" alt="brod">
  33. </body>
  34. </html>
Add Comment
Please, Sign In to add comment