.bg-image { width: 800%; height: 100%; position: absolute; left: 0; top: 0; background: url(图片地址) 0 0 repeat-x; animation: move 40s linear infinite; }怎么插入八张图片
时间: 2024-03-21 09:38:58 浏览: 115
bg-blur:使用CSS仅模糊背景视频
这段代码中的 `background` 属性是用来设置背景图片的,可以通过在 `url()` 中添加8张图片的路径来实现插入八张图片,如下所示:
```
.bg-image {
width: 800%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background: url(图片1地址) 0 0 repeat-x,
url(图片2地址) 100% 0 repeat-x,
url(图片3地址) 200% 0 repeat-x,
url(图片4地址) 300% 0 repeat-x,
url(图片5地址) 400% 0 repeat-x,
url(图片6地址) 500% 0 repeat-x,
url(图片7地址) 600% 0 repeat-x,
url(图片8地址) 700% 0 repeat-x;
animation: move 40s linear infinite;
}
```
这样就可以实现在背景中插入八张图片,每张图片的位置和重复方式都可以通过调整 `background` 属性中的参数来控制。
阅读全文