标签:
window.onload = function() { document.body.style.height=‘5000px‘; window.scrollTo(0,500); // var timer = setInterval(function() { // var scrolltop = document.documentElement.scrollTop || document.body.scrollTop; // window.scrollBy(0, -100) // if (scrolltop <= 0){ // clearInterval(timer) // } // console.log(scrolltop) // }, 30) var timer= setInterval(function() { window.scrollBy(0, -100) console.log(scrolltop) if ($(window).scrollTop() <= 0){ clearInterval(timer) } }, 30) }
标签:
原文地址:http://www.cnblogs.com/liujin0505/p/4282145.html