Fórum

Image rotation with HTML and CSS

Começado por WCode · 0 Respostas
Avatar

WCode


46 C

Postou: 21 C
HTML

<img src="https://ik.imagekit.io/ikmedia/rotation-blog/suv-image_CydtbqUYa.jpg" alt="Flatiron Building" />


CSS


img{
width: 300px;
animation: rotation 6s infinite linear;
}

@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}


SOURCE - https://codepen.io/imagekit_io/pen/wvmLVOe
Compartilhar na minha linha do tempo