CSS/Eigenschaften/animation
Aus SELFHTML-Wiki
< CSS | Eigenschaften
Die Eigenschaft animation ist die Zusammenfassung der Eigenschaften animation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count und animation-direction.
- Erlaubte Werte
siehe Einzelwerte
- Vererbung steuernde Werte
inherit
,initial
,unset
undrevert
- Standardwert
- animation-name: none
- animation-duration: 0s
- animation-timing-function: ease
- animation-delay: 0s
- animation-iteration-count: 1
- animation-direction: normal
- animation-fill-mode: none
- anwendbar auf
alle Elemente
- Vererbung
nein
- animierbar
nein
Beispiel
aside {
background-color: #000;
color: white;
animation: beispiel 3s;
}
@keyframes beispiel {
from {background-color: #000;}
to {background-color: #fff;}
}
Beachten Sie: Für ältere Versionen von Safari und Android müssen Sie proprietäre Eigenschaften verwenden.
für Android, Opera und Safari:
-
-webkit-animation
-
@-webkit-keyframes
Siehe auch
Weblinks
- Spezifikation (W3C): animation shorthand property
Liste der CSS-Eigenschaften
- Animationen
- animation
- offset
- offset-anchor
- offset-distance
- offset-path (ehem. motion-path)
- offset-rotate
- transition
- will-change
- Abstände
- Benutzeroberfläche
- Container
- generierter Inhalt
- Größenangaben
- Box-Ausrichtung
- Flexbox Layout
- Grid Layout
- Hintergründe
- Listen
- Tabellen
- Positionierung und Anzeige
- Scroll Snap
- Rahmen und Schatten
- Schriftformatierung
- Textformatierung
- Textausrichtung
- Umbruchsteuerung
- Transformationen
beispiel
mit einer animation-duration von 3s. Für alle anderen Eigenschaften werden die Defaultwerte verwendet.