决策报表中,按照帮助文档上实现了跑马灯效果 setTimeout(function() { $("div[widgetname=REPORT2]").find(".reportContent")[0].style.overflow = "hidden"; }, 100); window.flag = true; setTimeout(function() { $(".reportContent").mouseover(function() { window.flag = false; }) $(".reportContent").mouseleave(function() { window.flag = true; }) var old = -1; window.interval2 = setInterval(function() { if(window.flag) { currentpos = $(".reportContent")[0].scrollTop; if(currentpos == old) { $(".reportContent")[0].scrollTop = 0; } else { old = currentpos; $(".reportContent")[0].scrollTop = currentpos + 1.5; } } }, 50); }, 1000)
换成自定义的滚动条后,跑马灯效果消失,有什么办法,可以让跑马灯继续起作用吗。 jiushi 就是想实现官网的这个效果~~ |