css背景图片每3秒自动切换

html-css010

css背景图片每3秒自动切换,第1张

<div class="change">

</div>

<style>

.change {

animation: change 9s steps(1) infinite

background-repeat: no-repeat

background-position: center center

background-size: 100% auto

width: 200px

height: 100px

}

@keyframes change {

0% {

background-image: url(https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png)

}

33% {

background-image: url(https://www.duhongwei.site/img/201809/s1.png)

}

66% {

background-image: url(https://p4.ssl.qhimg.com/t01fcaa9d8a4d24b5f1.png)

}

}

</style>

纯 css 每3秒播一张图片。9s是总共时间,如果是4张图片这里写 12s

background-image添加背景图片

background-size指定背景图像的大小。CSS3以前,背景图像大小由图像的实际大小决定。

background-origin指定了背景图像的位置区域

background-clip背景剪裁属性是从指定位置开始绘制。