--- title: animation-fill-mode slug: Web/CSS/animation-fill-mode tags: - CSS - CSS Animations - CSS Property - Experimental - Reference translation_of: Web/CSS/animation-fill-mode ---
La propiedad CSS animation-fill-mode
especifica el modo en que una animación CSS aplica sus estilos, estableciendo su persistencia y estado final tras su ejecución.
{{cssinfo}}
Formal syntax: {{csssyntax("animation-fill-mode")}}
animation-fill-mode: none animation-fill-mode: forwards animation-fill-mode: backwards animation-fill-mode: both El caracter # indica que pueden darse varios valores separados por comas. Cada uno de los valores se aplicará en el mismo orden en que se ha declarado en la propiedad 'animation' animation-fill-mode: none, backwards animation-fill-mode: both, forwards, none
none
forwards
animation-direction |
animation-iteration-count |
ultimo keyframe encontrado |
---|---|---|
normal |
even o odd | 100% or to |
reverse |
even o odd | 0% or from |
alternate |
even | 0% or from |
alternate |
odd | 100% or to |
alternate-reverse |
even | 100% or to |
alternate-reverse |
odd | 0% or from |
backwards
animation-direction |
primer keyframe |
---|---|
normal o alternate |
0% or from |
reverse o alternate-reverse |
100% or to |
both
Puedes ver el efecto de animation-fill-mode en el siguiente ejemplo. Para animaciones que iteran de forma infinita, puede que quieras que al final de cada iteración queden en su estado final mejor que en el estado inicial.
<p>Mueve el raton sobre la caja gris</p> <div class="demo"> <div class="grows">Esto sólo crece</div> <div class="growsandstays">Esto crece y se queda grande</div> </div>
.demo { border-top: 100px solid #ccc; height: 300px; font-family: sans-serif; } @keyframes grow { 0% { font-size: 0 } 100% { font-size: 40px } } @-webkit-keyframes grow { 0% { font-size: 0 } 100% { font-size: 40px } } .demo:hover .grows { animation-name: grow; animation-duration: 3s; -webkit-animation-name: grow; -webkit-animation-duration: 3s; } .demo:hover .growsandstays { animation-name: grow; animation-duration: 3s; animation-fill-mode: forwards; -webkit-animation-name: grow; -webkit-animation-duration: 3s; -webkit-animation-fill-mode: forwards; }
{{ EmbedLiveSample('Example',700,300) }}
Especificación | Estado | Comentario |
---|---|---|
{{ SpecName('CSS3 Animations', '#animation-fill-mode', 'animation-fill-mode') }} | {{ Spec2('CSS3 Animations') }} |
{{ CompatibilityTable() }}
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Soporte básico | {{ CompatVersionUnknown() }}{{ property_prefix("-webkit") }} | {{ CompatGeckoDesktop("5.0") }}{{ property_prefix("-moz") }} {{ CompatGeckoDesktop("16.0") }} |
10 | 12{{ property_prefix("-o") }} 12.10 # |
4.0{{ property_prefix("-webkit") }} |
Característica | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | {{ CompatUnknown() }} | {{ CompatGeckoMobile("5.0") }}{{ property_prefix("-moz") }} {{ CompatGeckoMobile("16.0") }} |
{{ CompatUnknown() }} | {{ CompatUnknown() }} | {{ CompatUnknown() }} |