Forum

Image rotation with HTML and CSS

Sinimulan ni WCode · 0 Mga tugon
Avatar

WCode


46 sa

Nai-post: 21 sa
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
Share mo sa timeline ko