Skip to content

Instantly share code, notes, and snippets.

View LordZombi's full-sized avatar

Zombi LordZombi

View GitHub Profile
@LordZombi
LordZombi / animatedScrollTo.js
Created August 22, 2017 15:31 — forked from joshbeckman/animatedScrollTo.js
ScrollTo animation using pure javascript and no jquery
document.getElementsByTagName('button')[0].onclick = function () {
scrollTo(document.body, 0, 1250);
}
function scrollTo(element, to, duration) {
var start = element.scrollTop,
change = to - start,
currentTime = 0,
increment = 20;