Hakunin

SKI_V7_1

Dec 5th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.90 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.         #box1{
  8.  
  9.             width: 250px;
  10.             height: 250px;
  11.             position: absolute;
  12.             top: 80px;
  13.             left:80px;
  14.             background: linear-gradient(to right, #85DFFD , #0DAEE2);
  15.         }
  16.  
  17.         #box2{
  18.             width: 250px;
  19.             height: 250px;
  20.             background: linear-gradient(to top right, #F6290C,#f16f5c 50%,#f85032,#F6290C 50%);
  21.             transform: rotate(45deg);
  22.             animation-name: animacija;
  23.             animation-duration: 5s;
  24.             animation-iteration-count: infinite;
  25.  
  26.  
  27.         }
  28.  
  29.         @keyframes animacija {
  30.             from{transform: rotate(45deg)}
  31.             to{  transform: rotate(405deg)}
  32.         }
  33.     </style>
  34. </head>
  35. <body>
  36.  
  37. <div id="box1"/>
  38.  
  39. <div id="box2"/>
  40.  
  41.  
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment