我制作了一个脚本来每8秒更换一次背景图像。 Chrome中的一切都运行良好,但在其他浏览器中它并不适用。 (在Safari,Edge,IE 9 - 11和Mozilla上测试过)。我也有jQuery preload插件,但它实际上并没有预加载图像。控制台没有向我显示任何错误,因此我不知道它为什么不起作用。 代码:
var c = 1,
nimg = $('header .background .img').attr('data-bg'),
bgpath = $('header .background .img').css('background').match(/"(.*)"/),
imgpath,
imgs = [],
startpath,
startpoint,
selector = 'header .background .content .text',
time = 8000;
if (path[1] == 'diwerf') {
startpath = '/'+path[1];
} else {
startpath = '/templates';
};
startpoint = bgpath[1].search(startpath);
bgpath = bgpath[1].slice(startpoint);
for (var g = 1; g <= nimg; g++) {
imgpath = bgpath.replace(/[0-9]/g, g);
imgs.push(imgpath);
};
$.preload(imgs);
function removeText() {
setTimeout(function() {
$(selector).fadeOut('slow', function() {
$(this).removeClass('animated').removeAttr('style');
});
}, time-600);
}
removeText();
setInterval(function() {
if (c == nimg) {
c = 0;
};
c++;
bgpath = bgpath.replace(/[0-9]/g, c);
$('header .background .img').css('background', 'url('+bgpath+') center center no-repeat');
setTimeout(function() {
$(selector+'-'+c).addClass('animated');
}, 600);
removeText();
}, time+100);
它没有做任何事情,甚至没有添加动画&#39;类。
在这里,您可以看到网站:http://www.testing.dw-erfolg.eu/
感谢您的帮助!
答案 0 :(得分:0)
您使用的是速记CSS属性,但并非所有浏览器都保证这一点。
bgpath = $('header .background .img').css('background').match(/"(.*)"/),
相反,您应该使用.css('backgroundImage')
确保您也更改了第42行:
$('header .background .img').css('backgroundImage', 'url('+bgpath+')');