Pomoc - Szukaj - Użytkownicy - Kalendarz
Pełna wersja: [CSS]Animacja ikonki
Forum PHP.pl > Forum > Przedszkole
david8213
Zrobiłem animację jak poniżej. Jak zrobic żeby się ta animacja powtarzała
Co wpisać zamiast 100 powtorzeń ?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 300px;
  7. height: 300px;
  8. background: white;
  9. position: relative;
  10. animation: myfirst 5s 100;
  11. animation-direction: alternate;
  12. }
  13.  
  14. @keyframes myfirst {
  15. 0% { left: 10px; top: 10px; transform: scale(0.5); background-image: url("telefon.png");}
  16. 50% { left: 10px; top: 10px;transform: scale(0.7);background-image: url("telefon.png");}
  17. 100% { left: 10px; top: 10px;transform: scale(0.5);background-image: url("telefon.png");}
  18. }
  19. </style>
  20. </head>
  21. <body>
  22.  
  23. <div></div>
  24.  
  25. </body>
  26. </html>
viking
Patrzyłeś w dokumentację?
https://developer.mozilla.org/en-US/docs/We...iteration-count
trueblue
W jakim celu animujesz left, top i background-image, skoro nie zmieniają wartości?
david8213
nie usunałem tego bo wczesniej miałem inną animację

Juz jest OK. Dzięki

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. div {
  6. width: 300px;
  7. height: 300px;
  8. background: white;
  9. position: relative;
  10. animation: myfirst 2s infinite;
  11. animation-direction: alternate;
  12. text-decoration: none;
  13. border-style: none;
  14. border-style: hidden;
  15. }
  16.  
  17. @keyframes myfirst {
  18. 0% { transform: scale(0.5); background-image: url("telefon.png");}
  19. 50% { transform: scale(0.7);background-image: url("telefon.png");}
  20. 100% { transform: scale(0.5);background-image: url("telefon.png");}
  21. }
  22. </style>
  23. </head>
  24. <body>
  25.  
  26. <a href="tel:+48111222333"><div></div></a>
  27.  
  28. </body>
  29. </html>
trueblue
Przy takich wartościach scale wystarczy zdefiniowanie jednej klatki animacji: https://kawalekkodu.pl/kulturysta-czyli-ani...-z-jedna-klatka

background-image nadal nie jest potrzebne.
To jest wersja lo-fi głównej zawartości. Aby zobaczyć pełną wersję z większą zawartością, obrazkami i formatowaniem proszę kliknij tutaj.
Invision Power Board © 2001-2025 Invision Power Services, Inc.