关于无缝间歇性滚动的效果!!
function getDOM(id) {
return document.getElementById(id);
}
var text=getDOM("moocBox");
var con1=getDOM("con1");
var con2=getDOM("con2");
var timer;
var times;
con2.innerHTML=con1.innerHTML;
function startMove() {
text.scrollTop++;
timer=setInterval("scrollUp()",50);
}
function scrollUp() {
if(text.scrollTop % 24 ==0){
clearInterval(timer);
times=setTimeout("startMove()",2000);
}else {
text.scrollTop++;
if(text.scrollTop==con1.offsetHeight){
text.scrollTop=0;
}
}
}
startMove();
text.onmouseover=function () {
clearInterval(timer);
clearTimeout(times);
}
text.onmouseout=function () {
clearInterval(timer);
clearTimeout(times);
timer=setInterval("scrollUp()",50);
}
点击查看更多内容
3人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦