2017-06-03 19:39:38 -04:00
|
|
|
const easingOutQuint = (x, t, b, c, d) => c * ((t = t / d - 1) * t * t * t * t + 1) + b;
|
|
|
|
|
2017-08-04 12:57:46 -04:00
|
|
|
const scroll = (node, key, target) => {
|
2017-06-03 19:39:38 -04:00
|
|
|
const startTime = Date.now();
|
2017-08-04 12:57:46 -04:00
|
|
|
const offset = node[key];
|
|
|
|
const gap = target - offset;
|
2017-06-03 19:39:38 -04:00
|
|
|
const duration = 1000;
|
|
|
|
let interrupt = false;
|
|
|
|
|
|
|
|
const step = () => {
|
|
|
|
const elapsed = Date.now() - startTime;
|
|
|
|
const percentage = elapsed / duration;
|
|
|
|
|
|
|
|
if (percentage > 1 || interrupt) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-04 12:57:46 -04:00
|
|
|
node[key] = easingOutQuint(0, elapsed, offset, gap, duration);
|
2017-06-03 19:39:38 -04:00
|
|
|
requestAnimationFrame(step);
|
|
|
|
};
|
|
|
|
|
|
|
|
step();
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
interrupt = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-08-29 11:06:19 -04:00
|
|
|
export const scrollRight = (node, position) => scroll(node, 'scrollLeft', position);
|
2017-08-04 12:57:46 -04:00
|
|
|
export const scrollTop = (node) => scroll(node, 'scrollTop', 0);
|