名称:坚守分类:专题片在教师群体中,有这样一群人,他们扎根在广袤农村,为乡村学童播撒知识的火种,让乡村文脉得以赓续。他们有个共同的名字:乡村教师。
function myEvent(obj,ev,fn){
if(obj.attachEvent){
obj.attachEvent('on'+ev,fn);
}else{
obj.addEventListener(ev,fn,false);
}
}
myEvent(window,'load',function(){
var oRTT=document.getElementById('rtt');
var pH=document.documentElement.clientHeight;
var timer=null;
var scrollTop;
window.onscroll=function(){
scrollTop=document.documentElement.scrollTop||document.body.scrollTop;
return scrollTop;
};
oRTT.onclick=function(){
clearInterval(timer);
timer=setInterval(function(){
var now=scrollTop;
var speed=(0-now)/5;
speed=speed>0?Math.ceil(speed):Math.floor(speed);
if(scrollTop==0){
clearInterval(timer);
}
document.documentElement.scrollTop=scrollTop+speed;
document.body.scrollTop=scrollTop+speed;
}, 30);
}
});