Utilisation du style transform ▶ Exemple : rotation centrée

@keyframes anim { 0% { transform : rotate(0deg)} 100% { transform : rotate(180deg) } } #barre { width: 100px; height: 10px; background-color: orangered; margin:auto; animation : anim 12s infinite; } <div id="barre"></div>