我有一个使用背景图片的CSS样式(代码:background-image: url("folderimage.jpg");)。有没有一种方法可以使用jQuery / CSS在多个CSS背景图像之间旋转? (请提供示例)。

最佳答案

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

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);

09-26 21:58