PatakSudbine

patak1

Jul 11th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.11 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>CSS animacije - ponavljanje 1</title>
  6.     <style>
  7. /*  .krug {
  8.         width: 100px;
  9.         height: 100px;
  10.         background: teal;
  11.         border-radius:100%;
  12.         animation-timing-function:linear;
  13.         animation: otkucaji 1s infinite;
  14.         animation-direction: initial;
  15.     }
  16. */
  17.    
  18. /*  @keyframes otkucaji {
  19.         0% {
  20.             transform: translate(10px,10px) scale(1);
  21.         }
  22.         50% {
  23.             transform: translate(10px,10px) scale(1.5);
  24.         }
  25.         100% {
  26.             transform: translate(10px,10px) scale(1);
  27.         }
  28.     }
  29. */
  30.  
  31.     body {
  32.     overflow: hidden;
  33.     }
  34.     .kocka {
  35.         width: 100px;
  36.         height: 100px;
  37.         animation: jurnjava 4s infinite;
  38.         transform: translate(-300px,-400px);
  39.     }  
  40.     @keyframes jurnjava {
  41.         0% {
  42.             transform: translate(-300px,-400px);
  43.         }
  44.         25% {
  45.             transform: translate(500px,500px);
  46.         }
  47.         50% {
  48.             transform: translate(1800px,500px);
  49.         }
  50.         75% {
  51.             transform: translate(500px,500px);
  52.         }
  53.         100% {
  54.             transform: translate(-300px,-400px) scale(3.0);
  55.         }
  56.     }
  57.     </style>
  58. </head>
  59.  
  60. <body>
  61.     <div class="krug"></div>
  62.     <div class="kocka"><img src="preuzmi.png"></img></div>
  63. </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment