<style>
.cadre-gris { margin: 5px 0; }
.cadre-vert{
width : 300px;
animation-delay : 3s;
animation-direction : alternate;
animation-duration : 3s;
animation-play-state : running;
animation-name : exemple0 ;
}
@keyframes exemple0 {
from {
width : 300px;
}
to {
width : 500px;
}
}
</style>
<div class="cadre-exemple" id="exemple">
<h3 id="exemple-desc">Valeur par défaut</h3>
<div class="cadre-gris">
<span id="exemple-desc-0">Valeur initiale de animationFillMode.</span>
<p id="exemple-style-0" class="cadre-vert"> Effet animationFillMode.</p>
</div>
</div>
<script>
initExemple('animation-fill-mode', 'animationFillMode', [ 'backwards', 'none', 'forwards', 'both'], 1);
</script>
Effet animationFillMode.