<style>
.cadre-gris { margin: 5px 0; }
.cadre-vert{
width : 300px; height : 20px;
animation-delay : 0;
animation-direction : alternate;
animation-duration : 3s;
animation-iteration-count : infinite;
animation-play-state : running;
}
@keyframes exemplew0 {
from {
width : 300px;
}
to {
width : 500px;
}
}
@keyframes exempleh0 {
from {
height : 20px;
}
to {
height : 50px;
}
}
</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 animationName.</span>
<p id="exemple-style-0" class="cadre-vert"> Effet animationName.</p>
</div>
</div>
<script>
initExemple('animation-name', 'animationName', [ 'exemplew0', 'none', 'exempleh0'], 1);
</script>
Effet animationName.