Scroll Back To Top button
Bootstrap Scroll To Top Button - free examples & tutorial
Scroll Back To Top link built with Bootstrap 5. Create a button that appears when you start scrolling and on click smooth scrolls you to the top of the page.
To learn more read Buttons Docs.
Basic example
When your page is very long you may want to give your users an option to quickly scroll back to the top of the page. In such cases the best solution is to add a button that will appear after the user scrolls a specified number of pixels.
You can specify when the button appears by changing the condition set in the JavaScript code below,
document.body.scrollTop
for older browsers and document.documentElement.scrollTop
for
new ones. In the example we've set this to 20
pixels but you may increase this value if you want your
button to appear later.
We recommend using this component along with the Smooth scroll functionality.