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