0

我有一个使用背景图像的 CSS 样式(代码:)background-image: url("folderimage.jpg");。有没有办法使用 jQuery/CSS 在多个 CSS 背景图像之间旋转?(请举个例子)。

4

2 回答 2

2

这种东西会起作用我还没有测试过代码,但想法是有一个由五个图像组成的数组并在超时时更改它们。如果您需要,我可以向您解释代码。




var theImages = new Array(); 

theImages[0] = '1.gif' 
theImages[1] = '2.gif' 
theImages[2] = '3.gif' 
theImages[3] = '4.gif' 
theImages[4] = '5.gif' 

function changeBGImage(){
var whichImage = Math.round(Math.random()*(p-1));
jQuery('#elementHavingProperty').css('background-image','url('+theImages[whichImage+'])');

} 


movement = setTimeout("changeBGImage()",1000000);

于 2012-04-27T06:21:58.723 回答
0

也许是话题。但是您可以查看我的代码,了解我如何旋转页面上的所有内容。

我的网页

于 2012-04-27T07:10:14.957 回答