Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
CSS Animationen verbinden
#4
Ich habe versucht das delay mit in das .element zu packen, funktioiert leider nicht.

@keyframes

scaleIn {
from { transform: scale(0.0, 0.0); opacity: 0.5; }
to { transform: scale(1.0, 1.0); opacity: 0.0; }
}



.element {
width: 100px;
height: 100px;
position: absolute;
background: white;
border-radius: 50%;
animation: scaleIn 6s;
animation-delay: 0.0s, 1.0s, 2.0s;
animation-iteration-count: infinite; }
Zitieren


Nachrichten in diesem Thema
CSS Animationen verbinden - von envoy - 18.03.2024, 13:36
RE: CSS Animationen verbinden - von AndreasB - 18.03.2024, 14:26
RE: CSS Animationen verbinden - von envoy - 18.03.2024, 18:14
RE: CSS Animationen verbinden - von envoy - 19.03.2024, 23:19
RE: CSS Animationen verbinden - von AndreasB - 20.03.2024, 09:11
RE: CSS Animationen verbinden - von envoy - 20.03.2024, 13:51
RE: CSS Animationen verbinden - von AndreasB - 21.03.2024, 07:51
RE: CSS Animationen verbinden - von envoy - 21.03.2024, 08:16
RE: CSS Animationen verbinden - von AndreasB - 21.03.2024, 08:23

Gehe zu:


Benutzer, die gerade dieses Thema anschauen:
1 Gast/Gäste