日期:2014-05-16 浏览次数:20518 次
<script type="text/javascript">
var $=function(ID){return document.getElementById(ID);};
var timer=null,speed=36,y=0.1;
window.onscroll=function(){
if(timer) {
clearTimeout(timer);
}
timer=null;
;(function(){
st=document.body.scrollTop||document.documentElement.scrollTop;
if(parseInt($("test").style.top)<st+120){
$("test").style.top=parseInt($("test").style.top)+Math.ceil((st+120-parseInt($("test").style.top))*y)+"px";
} else if(parseInt($("test").style.top)>st+120){
$("test").style.top=parseInt($("test").style.top)-Math.ceil((parseInt($("test").style.top)-120-st)*y)+"px";
} else {
clearTimeout(timer);
timer=null;
}
timer=setTimeout(arguments.callee,speed);
})();
}
//page 287 event2
//page 312 oscroll
</script>