javascript - Animating window scrolling -
hi using following method programmatically scroll web document:
window.scrollby(0, delta)
the current implementation of scrollby jumps document new position. there way of animating this? using webkit specifically, , jquery (or other javascript framework) not option.
thanks in advance.
you can animate invoking interval:
setinterval(function() { window.scrollby(0, 5); }, 13);
this of course on , over, need put in conditional check, when cancel interval. like:
var timerid = setinterval(function() { window.scrollby(0, 5); if( window.pageyoffset >= 500 ) clearinterval(timerid); }, 13);
Comments
Post a Comment