Back to Top Button Using Vanilla Javascript | back2top.js

Back2Top Js is a small library for creating a back-to-the-top using Vanilla JavaScript. The small, configurable backup button appears automatically when scrolling down and hides automatically after the page has scrolled to the top.

Must Read: Simple And Lightweight “back to top” Vue.js Component

Back to Top Button JS

Post Nameback2top JS
Author Namechiranjit2020
CategoryButtons, Scrolling
Official PageClick Here
Official Websitegithub.com
Publish DateJanuary 20, 2021
Last UpdateJuly 15, 2023
DownloadLink Below
LicenseMIT

How to make use of it:

1. Add the back2top.js JavaScript library to the web page.

<script src="back2top.min.js"></script>

2. Create a button on the web page.

<button id="back2top">BACK2TOP</button>

3. Initialize the button and resolve how far the web page is scrolled right down to show this button.

const button = document.querySelector("#back2top");
BACK2TOP(button, 200);

4. Config the graceful scroll conduct.

// BACK2TOP(selector, offset, prop, time, effect, delay);
BACK2TOP(button, 200, "all", 300, "ease", 0);

5. Apply your CSS types to the again-to-top button.

button#back2top{
  position: fixed;
  right: 2%;
  bottom: 2%;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  color: #fff;
  background-color: #4F46E5;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 18px;
  margin: 0;
  border-radius: 3px;
}

See Demo And Download

Back-to-Top-Button

Official Website(chiranjit2020): Click Here

This superior jQuery/javascript plugin is developed by chiranjit2020. For extra Advanced Usage, please go to the official website.

Related Posts

VenoBox-Responsive-jQuery-Lightbox-Plugin

Responsive Image Gallery Lightbox jQuery Plugin | VenoBox

VenoBox is a responsive jQuery modal window plugin suitable for images, embedded content, iFrames, Google Maps, Vimeo, and YouTube videos. The big difference compared to many other…

bootstrap-dropdown-on-hover

[Animation] Bootstrap Multi-Level Responsive Dropdown Menu

Bootstrap-based multi-level dropdown navigation menu with cool animations. The dropdown on Hover is a jQuery plugin used to create Bootstrap multi-level scroll-triggered dropdown menus with CSS3 animations…

Google-Translate-Dropdown-Customize-With-Country-Flag

Google Translate Dropdown Customize With Country Flag | GT API

Flag google translates jQuery text that takes advantage of the Google Cloud Translation API to translate web content between languages by selecting a country from the dropdown…

Bootstrap-Fileinput

HTML 5 File Input Optimized for Bootstrap 4.x./3.x with File Preview | Bootstrap Fileinput

bootstrap-fileinput is an improved HTML 5 file input  Bootstrap 5.x, 4.x and 3.x with file preview for different files, provides multiple selections, resumable section uploads, and more….

HStack-and-VStack-in-CSS

CSS Layout Components Horizontal/Vertical Stack | HStack and VStack

HStack and VStack in CSS – CSS layout components that (basically) stack anything horizontally and vertically. A pure CSS library that makes it easy to stack elements…

Floating-Whatsapp-Chat-Button

How to Add Floating Whatsapp Chat Button In HTML | venom-button

Venom Button is a very simple plugin for the jQuery floating WhatsApp button. Adds a floating button to your site that calls WhatsApp Click to Chat API. It will automatically start the WhatsApp…

Leave a Reply

Your email address will not be published. Required fields are marked *