PatakSudbine

patak3

Jul 11th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.07 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(300px,500px);
  46.         }
  47.         50% {
  48.             transform: translate(300px,500px) scale(10.0);
  49.         }
  50.         100% {
  51.             transform: translate(300px,500px) scale(10.0);
  52.         }
  53.     }
  54.     </style>
  55. </head>
  56.  
  57. <body>
  58.     <div class="krug"></div>
  59.     <div class="kocka"><img src="preuzmi.png"></img></div>
  60. </body>
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment