<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 animationTimingFunction.</span>
<p id="exemple-style-0" class="cadre-vert"> Effet animationTimingFunction.</p>
</div>
</div>
<script>
initExemple('animation-timing-function', 'animationTimingFunction', [ 'linear', 'ease-in-out', 'steps(1, end)', 'ease-out', 'ease-in' ], 1);
</script>
Effet animationTimingFunction.