gpt4 book ai didi

javascript - 使用 JQuery 添加完整的背景图像

转载 作者:太空宇宙 更新时间:2023-11-04 12:36:39 24 4
gpt4 key购买 nike

我正在构建一个小脚本,一个带描述的全屏幻灯片,但我在添加图像时遇到了一些问题,似乎无法识别图像。

http://jsfiddle.net/w7c3gzvd/

我也想添加这段代码

"no-repeat center center fixed;"

固定背景。

我做错了什么?

var i = 1;

function slideshow() {
setTimeout(function() {

if (i == 2) {
$("body").css("http://static.vecteezy.com/system/resources/previews/000/046/003/original/fuchsia-background-with-light-beams-no-bar.jpg)");
$("#description").text("teste1");
}
if (i == 3) {
$("body").css("http://i1.wp.com/static.web-backgrounds.net/uploads/2012/08/City_Landscape_Background.jpg)");
$("#description").text("teste2");
}
if (i == 4) {
$("body").css("http://4.bp.blogspot.com/-AISNX1W0-ww/UXZ80eprU8I/AAAAAAAAAoI/e4-7I79LmKI/s1600/background+wallpaper+6742.jpg)");
$("#description").text("teste3");
i = 1;
}

i++;
if (i < 5) {
slideshow();
}

}, 1000)
}

slideshow();

谢谢

最佳答案

您没有正确实现 jquery 的 .css()。您必须将属性名称和值作为参数传递给它 http://api.jquery.com/css/

.css( propertyName, value )

因此,要设置背景图片(以及您需要的其他参数),您可以使用:

$(body).css('background','url("http://static.vecteezy.com/system/resources/previews/000/046/003/original/fuchsia-background-with-light-beams-no-bar.jpg") no-repeat center center fixed');

关于javascript - 使用 JQuery 添加完整的背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27233368/

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