How does the scroll works? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How does the scroll works?

i like yo know how can i do a Button to scroll up

11th Apr 2017, 1:30 PM
Eloý Pascual
Eloý Pascual - avatar
1 Answer
+ 1
Try this: var scrollUp = document.getElementsByClassName('back-to-top')[0]; window.onscroll = function(){ if(window.pageYOffset >= 400){ scrollUp.style.display = 'block'; }else{ scrollUp.style.display = 'none'; } } scrollUp.onclick = function(){ window.scrollTo(0,0); }
12th Apr 2017, 5:23 AM
Elias Papachristos
Elias Papachristos - avatar