animation-fill-mode
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.
Die animation-fill-mode CSS Eigenschaft legt fest, wie eine CSS-Animation Stile auf ihr Ziel vor und nach ihrer Ausführung anwendet.
Probieren Sie es aus
animation-fill-mode: none;
animation-delay: 1s;
animation-fill-mode: forwards;
animation-delay: 1s;
animation-fill-mode: backwards;
animation-delay: 1s;
animation-fill-mode: both;
animation-delay: 1s;
<section class="flex-column" id="default-example">
<div>Animation <span id="play-status"></span></div>
<div id="example-element">Select a mode to start!</div>
</section>
#example-element {
background-color: #1766aa;
color: white;
margin: auto;
margin-left: 0;
border: 5px solid #333333;
width: 150px;
height: 150px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#play-status {
font-weight: bold;
}
.animating {
animation: slide 1s ease-in 1;
}
@keyframes slide {
from {
background-color: orange;
color: black;
margin-left: 0;
}
to {
background-color: orange;
color: black;
margin-left: 80%;
}
}
const el = document.getElementById("example-element");
const status = document.getElementById("play-status");
function update() {
status.textContent = "delaying";
el.className = "";
window.requestAnimationFrame(() => {
window.requestAnimationFrame(() => {
el.className = "animating";
});
});
}
el.addEventListener("animationstart", () => {
status.textContent = "playing";
});
el.addEventListener("animationend", () => {
status.textContent = "finished";
});
const observer = new MutationObserver(() => {
update();
});
observer.observe(el, {
attributes: true,
attributeFilter: ["style"],
});
update();
Es ist oft bequem, die Kurzschreibweiseigenschaft animation zu verwenden, um alle Animationseigenschaften auf einmal festzulegen.
Syntax
/* Single animation */
animation-fill-mode: none;
animation-fill-mode: forwards;
animation-fill-mode: backwards;
animation-fill-mode: both;
/* Multiple animations */
animation-fill-mode: none, backwards;
animation-fill-mode: both, forwards, none;
/* Global values */
animation-fill-mode: inherit;
animation-fill-mode: initial;
animation-fill-mode: revert;
animation-fill-mode: revert-layer;
animation-fill-mode: unset;
Werte
none-
Die Animation wird keine Stile auf das Ziel anwenden, wenn sie nicht ausgeführt wird. Das Element wird stattdessen mit allen anderen CSS-Regeln angezeigt, die darauf angewendet werden. Dies ist der Standardwert.
forwards-
Das Ziel behält die berechneten Werte, die durch den letzten Schlüsselbild, der während der Ausführung auftritt, festgelegt werden. Das letzte Schlüsselbild hängt von dem Wert von
animation-directionundanimation-iteration-countab:animation-directionanimation-iteration-countletztes Schlüsselbild normalgerade oder ungerade 100%odertoreversegerade oder ungerade 0%oderfromalternategerade 0%oderfromalternateungerade 100%odertoalternate-reversegerade 100%odertoalternate-reverseungerade 0%oderfromAnimierte Eigenschaften verhalten sich so, als wären sie in einem Set des
will-change-Eigenschaftswerts enthalten. Wenn während der Animation ein neuer Stapelkontext erstellt wurde, behält das Zielelement den Stapelkontext bei, nachdem die Animation beendet ist. backwards-
Die Animation wird die in dem ersten relevanten Schlüsselbild definierten Werte anwenden, sobald sie auf das Ziel angewendet wird, und sie während der
animation-delayZeit behalten. Das erste relevante Schlüsselbild hängt von dem Wert vonanimation-directionab:animation-directionerstes relevantes Schlüsselbild normaloderalternate0%oderfromreverseoderalternate-reverse100%oderto both-
Die Animation wird die Regeln für sowohl vorwärts als auch rückwärts befolgen und somit die Animationseigenschaften in beide Richtungen erweitern.
Hinweis:
Wenn Sie mehrere kommagetrennte Werte bei einer animation-* Eigenschaft spezifizieren, werden sie auf die Animationen in der Reihenfolge angewendet, in der die animation-nameen erscheinen. Für Situationen, in denen die Anzahl der Animationen und animation-* Eigenschaftswerte nicht übereinstimmen, siehe Festlegen mehrerer Animations-Eigenschaftswerte.
Hinweis:
animation-fill-mode hat denselben Effekt beim Erstellen von CSS scroll-gesteuerten Animationen wie bei regulären zeitbasierten Animationen.
Formale Definition
| Anfangswert | none |
|---|---|
| Anwendbar auf | alle Elemente, ::before und ::after Pseudoelemente |
| Vererbt | Nein |
| Berechneter Wert | wie angegeben |
| Animationstyp | Not animatable |
Formale Syntax
animation-fill-mode =
<single-animation-fill-mode>#
<single-animation-fill-mode> =
none |
forwards |
backwards |
both
Beispiele
>Füllmodus festlegen
Sie können den Effekt von animation-fill-mode im folgenden Beispiel sehen. Es demonstriert, wie Sie die Animation im letzten Zustand verbleiben lassen können, anstatt in den ursprünglichen Zustand zurückzukehren (was der Standard ist).
HTML
<p>Move your mouse over the gray box!</p>
<div class="demo">
<div class="grows-and-stays">This grows and stays big.</div>
<div class="grows">This just grows.</div>
</div>
CSS
.demo {
border-top: 100px solid #cccccc;
height: 300px;
}
@keyframes grow {
0% {
font-size: 0;
}
100% {
font-size: 40px;
}
}
.demo:hover .grows {
animation-name: grow;
animation-duration: 3s;
}
.demo:hover .grows-and-stays {
animation-name: grow;
animation-duration: 3s;
animation-fill-mode: forwards;
}
Ergebnis
Siehe CSS-Animationen für weitere Beispiele.
Spezifikationen
| Specification |
|---|
| CSS Animations Level 1> # animation-fill-mode> |
Browser-Kompatibilität
Loading…
Siehe auch
- Verwendung von CSS-Animationen
- JavaScript
AnimationEventAPI - Andere verwandte Animationseigenschaften:
animation,animation-composition,animation-delay,animation-direction,animation-duration,animation-iteration-count,animation-name,animation-play-state,animation-timeline,animation-timing-function