// 火苗动效
var firImg = ["./images/guo_09.png", “./images/guo_10.png”, “./images/guo_11.png”];
bgAll(firImg, ‘#fire’, 500);
//切换图片(动效)backgrounds:数组,select选择器,time时间
function bgAll(backgrounds, select, time) {
var bgCounter = 0,
backgrounds = backgrounds;
function changeBackground() {
bgCounter = bgCounter % backgrounds.length;
$(select).css(‘background-image’, ‘url(’ + backgrounds[bgCounter] + ‘)’);;
if (bgCounter < backgrounds.length) {
bgCounter++;
setTimeout(changeBackground, time);
}
}
changeBackground();
};
js切换图片
最新推荐文章于 2022-01-17 23:21:34 发布