我这里哪里出错了,滚动条动不了呀,明明是照着老师的步骤一步一步来的
//页面加载完触发
window.onload=function () {
var obtn = document.getElementById('btn');
var timer=null;
var istop=true;
//滚动条滚动时出发
window.onscroll=function () {
if (!istop){
clearInterval(timer);
}
istop=false;
}
obtn.onclick=function () {
//设置定时器
timer=setInterval(function () {
//获取滚动条距离顶部的高度
var ostop=document.documentElement.scrollTop || document.body.scrollTop;
var ispeed=math.floor(-ostop/6);
document.documentElement.scrollTop = document.body.scrollTop =ostop+ispeed;
istop=true;
console.log(ostop-ispeed);
if (ostop==0){
clearInterval(timer);
}
},30);
}
}