Trang chủCSSBài viết
CSS

Code chạy xe máy qua lại

02/01/2025 1083 lượt xem admin Cập nhật: 04/12/2025
5/5 - (508 bình chọn)

Dán

<div class="theme-newyear">
 <img src="//webdy.vn/public/files/uploads/2024/03/motorbike.png" width="70" height="58" class="motorbike">    
</div>


<style>
.theme-newyear .motorbike {
    left: calc(100% - 80px);
    max-width: 70px;
    position: absolute;
    top: -55px;
    transform: scaleX(1);
    animation: motorbikeAnimation 24s infinite ease-in-out;
}@keyframes  motorbikeAnimation{
0% {
    left: 0;
    transform: scaleX(1);
}
49% {
    left: calc(100% - 80px);
    transform: scaleX(1);
}
50% {
    left: calc(100% - 80px);
    transform: scaleX(-1);
}
51% {
    left: calc(100% - 80px);
    transform: scaleX(-1);
}
100% {
    left: 0;
    transform: scaleX(-1);
} }
</style>

 

Chào ! Bạn thấy nội dung này thế nào?
webdy.vn
webdy.vn

Tạo web nhanh dùng thử miễn phí.

Chia sẻ ↗

Bài liên quan

×