Advertisement
Aniket_Goku

animated background

Feb 21st, 2021
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.00 KB | None | 0 0
  1.  
  2.  
  3. <html>
  4.     <style>
  5.     body { 
  6.          
  7.        
  8.         background-size:100%;
  9.           animation: Back infinite 40s;
  10.         animation-timing-function: ease-in-out;
  11.          animation-direction: alternate ;
  12.         animation-fill-mode: both;
  13.              }
  14.    
  15.  
  16. @keyframes Back {
  17.   00%  { background-image: url(file:///D:/backgrounds/20.jpg)}
  18.   10% { background-image: url(file:///D:/backgrounds/21.jpg);}
  19.   20% { background-image: url(file:///D:/backgrounds/23.jpg); }
  20.   30%  { background-image: url(file:///D:/backgrounds/25.jpg); }
  21.   40% { background-image: url(file:///D:/backgrounds/18.jpg); }
  22.   50% { background-image: url(file:///D:/backgrounds/5.jpg); }
  23.   60% { background-image: url(file:///D:/backgrounds/3.jpg); }
  24.   70% { background-image: url(file:///D:/backgrounds/22.png); }
  25.   80% { background-image: url(file:///D:/backgrounds/24.jpg); }
  26.   90% { background-image: url(file:///D:/backgrounds/26.jpg); }
  27.   100% { background-image: url(file:///D:/backgrounds/17.png); }
  28. }  
  29.     </style>
  30.     <body bgcolor="grey" >
  31.        
  32.     </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement