Smooth element scroll to position with requestAnimationFrame and Tween.
$ component install component/element-scroll-top
Scroll to the given point top
with the given options
:
ease
easing function defaulting to "out-circ" (view ease for more)duration
animation duration defaulting to1000
var elementScrollTop = require('element-scroll-top');
var element = document.getElementById('test');
elementScrollTop(element, 1200, {
ease: 'out-bounce',
duration: 1500
});
MIT