Accueil > animation-duration Css > animation-duration CSS exemple
<style> #animation-duration{ animation-duration : 5s; animation-name : animation; animation-iteration-count : infinite; border: 1px solid #666; padding : 5px; width : 90%; } @keyframes animation{ from { width : 90% } to { width : 100px; } } </style> <div id="animation-duration">Je me réduis</div>