关于添加“信息间歇性滚动”中鼠标悬停事件
原课程中最后一节,老师没有加鼠标悬停事件,我想自己加,于是加了下面两段代码。
area.onmouseover = function(){
clearInterval(time);
}
area.onmouseout = function(){
time=setInterval("scrollUp()",speed);
}
但是会出现bug,就是鼠标快速进出area区域,滚动会滚得越来越快,请问怎么解决?是什么问题?
原课程中最后一节,老师没有加鼠标悬停事件,我想自己加,于是加了下面两段代码。
area.onmouseover = function(){
clearInterval(time);
}
area.onmouseout = function(){
time=setInterval("scrollUp()",speed);
}
但是会出现bug,就是鼠标快速进出area区域,滚动会滚得越来越快,请问怎么解决?是什么问题?
2015-11-20
举报