Last active
February 11, 2019 05:09
-
-
Save theonlydaleking/c257a9385e6028b935133cd82c5423f5 to your computer and use it in GitHub Desktop.
Scrolls to a specific element in the querySelector (rather than using a package)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.scrollTo({ | |
top: document.querySelector('.stats__chart').scrollHeight, | |
behavior: "smooth" | |
}) | |
or | |
const scrollToVideo = () => { | |
let e = document.getElementById('video') | |
e.scrollIntoView({behavior: 'smooth'}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment