gpt4 book ai didi

javascript - 如何给两个交替的背景图像?

转载 作者:可可西里 更新时间:2023-11-01 13:28:20 26 4
gpt4 key购买 nike

CSS代码

body {
background-color: rgb(224,224,224,0.6);
background: url(../img/backlogo.png),url(../img/backlogo2.png);

}

我想交替给出两个背景图像。我已经在 image 中显示了输出.我希望两张图片并排重复。

最佳答案

尝试这样的事情

body {
background-color: rgb(224, 224, 224, 0.6);
background: url(https://upload.wikimedia.org/wikipedia/commons/c/c3/Acid2.png), url(http://easycarkeys.com/images/accept.png);
background-repeat: no-repeat, no-repeat;
background-position: right center, left center;
height:250px;
}

引用: Using CSS multiple backgrounds


更新:为避免溢出,根据其他背景图片的宽度和高度设置背景位置

body {
background-color: rgb(224, 224, 224, 0.6);
background: url(https://upload.wikimedia.org/wikipedia/commons/c/c3/Acid2.png), url(http://easycarkeys.com/images/accept.png);
background-repeat: no-repeat, no-repeat;
background-position: 200px center,left center;
height:250px;
}

关于javascript - 如何给两个交替的背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34171599/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com