纯css 滚动动画轮播图 鼠标 移入暂停 移出继续

该文章展示了如何使用HTML和CSS创建一个轮播图,并通过CSS动画实现图片滑动效果。当鼠标悬停时,轮播图会暂停,离开时恢复播放。文章还提及了如何通过修改`animation-play-state`属性来控制动画的暂停和开始。
摘要由CSDN通过智能技术生成

html

                <!-- 轮播图 -->
                <div class="container">
                  <div class="wrapper swiper-wrapper">
                    <ul class="lists">
                      <img src="/static/images/1.jpg" alt="">
                      <img src="/static/images/2.jpg" alt="">
                      <img src="/static/images/3.jpg" alt="">
                      <img src="/static/images/4.jpg" alt="">
                      <img src="/static/images/5.jpg" alt="">
                      <img src="/static/images/1.jpg" alt="">
                    </ul>
                  </div>
                </div>

css

.container .wrapper ul {
    width: 6000px;
}
.lists img {
    width: 250px;
    height: 186px;
    object-fit: cover;
}
.lists {
    width: 100%;
    height: 186px;
    animation: 20s moves linear infinite normal;
}

.lists:hover { // 移入停止
    animation: 20s moves linear infinite paused;

}

@keyframes moves {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(-4250px);
    }
}

核心:

滚动:

animation: 20s moves linear infinite normal;

停止:
animation: 20s moves linear infinite paused;

如果有多个动画,需要暂停所有动画,就在父元素里面触发

暂停: animation-play-state: paused !important;

开始:animation-play-state: normal !important;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

巨蟹座守护骑士

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值