0

下面是充当背景的图像元素。该位置是绝对的,并且它的 z-index 也很低,因此它位于其余内容的后面。

<img src="day-sky.jpg" id="background" />

下面的秒数仅指一分钟内的秒数。这仅用于测试目的,但如果秒数 < 30,我希望有一个背景图像,如果大于 30,我希望有一个不同的背景图像。如果可能,过渡将是一个很好的淡入淡出到下一个图像。

我一直在寻找方法来做到这一点,但还没有想出一个好的方法来做到这一点。有什么想法吗?

function changeBackground() {

if (secs > 30) {
    //have one background
}
else {
    //have a different background
  }
}
4

2 回答 2

1

您可能希望在setInterval()根据您的要求定义的每个时间戳之后使用函数来更改背景。

setInterval(changebackground, timeout); runs the code/function once after the timeout.

 $(function() {
    setInterval(function() {
        var bg = ["#000","#FF0", "#909"]
        var rep= Math.floor(Math.random() *3);
                $("body").css("background",bg[rep])
    }, 3000)
  })
于 2012-11-09T17:13:33.653 回答
0

这是一个工作示例:http: //jsfiddle.net/PKqGk/

var imgs = [
        "http://placehold.it/1920x1080/&text=1",
        "http://placehold.it/1920x1080/&text=2",
        "http://placehold.it/1920x1080/&text=3",
        "http://placehold.it/1920x1080/&text=4",
        "http://placehold.it/1920x1080/&text=5",    
        "http://placehold.it/1920x1080/&text=6"   
    ],
    ind = 0,
    dur = 10 * 1000; // ten seconds
(function imgSlide(){

    var img = ind % 2 ? $('#imageOne') : $('#imageTwo'),
        hid = ind % 2 ? $('#imageTwo') : $('#imageOne');

    console.log(img, hid);

    img.fadeOut("slow", function(){
        hid.fadeIn("slow").css('margin-left', -hid.width()/2);
        if (++ind == imgs.length) ind = 0;
        img.attr('src', imgs[ind]);
        setTimeout(imgSlide, dur);
    });
})();​
于 2012-11-09T18:14:54.060 回答