zxz 06.10.2020 22:13
Predmet:Transformacija teksta

PreuzmiIzvorni kôd (HTML):
  1. <!DOCTYPE HTML>
  2. <title>Number</title>
  3. <style type="text/css">
  4. article
  5. {
  6. background-color:gray;
  7. transform: scale(1,3);
  8. }
  9. </head>
  10. <article>
  11. Ovo je tekst clanka... Ovo je tekst clanka... Ovo je tekst clanka... Ovo je tekst clanka...
  12. Ovo je tekst clanka... Ovo je tekst clanka...
  13. </article>
  14. </body>
  15. </html>

zxz 07.10.2020 20:23
Predmet:Animacija

PreuzmiIzvorni kôd (HTML):
  1. <!DOCTYPE>
  2. <style type="text/css">
  3. div
  4. {
  5. width:50px;
  6. height:50px;
  7. background:green;
  8. position:relative;
  9. animation:animacija 15s;
  10. }
  11. @keyframes animacija
  12. {
  13. 0% {background:green; left:2px; top:2px;}
  14. 25% {background:yellow; left:300px; top:2px;}
  15. 50% {background:blue; left:300px; top:300px;}
  16. 75% {background:green; left:2px; top:300px;}
  17. 100% {background:red; left:2px; top:2px;}
  18. }
  19. </head>
  20. <div></div>
  21. animacija
  22. </body>
  23. </html>