直接js 语句
10版本
setInterval(function() {
$(".content-container div[widgetname='REPORT0']").css({
'background': 'url(/webroot/help/picture/icon_top1-18.png)no-repeat',
'background-size': '100% 100%'
});
}, 10000);//10秒定时触发
11版本增加报表块背景图
setInterval(function() {
$("div[widgetname= REPORT0]").css("background", "url(/webroot/help/picture/icon_top2-19.png)center center / 100% 100% no-repeat")
}, 10000);//10秒定时触发
这个你图片需要名字有规律,参考这个语句,for语句判断下,图片名字自动加1比较方便,到一定时候,就回到0
============
讲错,是if判断
var a=0;
setInterval(function() {
if(a==0)
{
$("div[widgetname= REPORT0]").css("background", "url(/webroot/help/picture/icon_top1-.png)center center / 100% 100% no-repeat")
a=1;
}
else if(a==1)
{
$("div[widgetname= REPORT0]").css("background", "url(/webroot/help/picture/icon_top2.png)center center / 100% 100% no-repeat")
a=2;
}
else if(a==2)
{
$("div[widgetname= REPORT0]").css("background", "url(/webroot/help/picture/icon_top3.png)center center / 100% 100% no-repeat")
a=3;
}
else if(a==3)
{
$("div[widgetname= REPORT0]").css("background", "url(/webroot/help/picture/icon_top4.png)center center / 100% 100% no-repeat")
a=0;
}
}, 10000);//10秒切换