gpt4 book ai didi

javascript - 使用 Javascript 的随机背景图片

转载 作者:行者123 更新时间:2023-11-30 09:54:51 24 4
gpt4 key购买 nike

我想随机显示一个完整的背景图片,但我没有这样做。

var images = [], 
index = 0;

images[0] = "img/y0.gif";
images[1] = "img/y1.gif";
images[2] = "img/y2.gif";
images[3] = "img/y3.gif";
images[4] = "img/y4.gif";
images[5] = "img/y5.gif";

index = Math.floor(Math.random() * images.length);
document.body.style.background = "url('+images[index]+') no-repeat center center fixed";

获取空白屏幕。

我的CSS:

@import url(http://fonts.googleapis.com/css?family=Advent+Pro:100);
html {
margin: 0;
padding: 0;
width:100%;
height:100%;
}
body {
background-size: cover;
height: 100%;
}

可能是什么原因?

最佳答案

"url('+images[index]+') no-repeat center center fixed";

应该是

"url('"+images[index]+"') no-repeat center center fixed";

关于javascript - 使用 Javascript 的随机背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34551990/

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