-
Notifications
You must be signed in to change notification settings - Fork 1
Web development
Zach Levitt edited this page Oct 3, 2022
·
2 revisions
document.querySelectorAll('*').forEach(d => d.setAttribute('contenteditable', true))
let annotations = document.querySelectorAll(".g-annotation"); annotations.forEach (function (annotation, index) { annotation.style.visibility = "hidden"; });
var distance=5000,by=2,speed=5,step=0, interval = setInterval(function(){window.scrollBy(0,by);step++;if(step>distance)clearInterval(interval)},speed);
clearInterval(interval)