var timer;
window.onscroll = function () {
clearTimeout(timer);
timer = setTimeout(function () {
alert(1)
}, 100)
}
05-11 19:58