Diễn đàn

Image rotation with HTML and CSS

Bắt đầu bởi WCode · 0 Trả lời
Avatar

WCode


46 Trong

Đã đăng: 21 Trong
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
Chia sẻ trên dòng thời gian của tôi