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