<style>
.cadre-gris { margin: 5px 0; }
.cadre-vert{
width : 300px;
animation-name : exemple0 ;
animation-direction : alternate;
animation-iteration-count : infinite;
animation-play-state : running;
}
@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 animationDuration.</span>
<p id="exemple-style-0" class="cadre-vert"> Effet animationDuration.</p>
</div>
</div>
<script>
initExemple('animation-duration', 'animationDuration', ['2s', '5000ms', '0s'], 1);
</script>
Effet animationDuration.