Smart Back To Top Button jQuery gotop js - Download Smart Configurable Back To Top Button In jQuery - jquery.gotop.js

Download Smart Configurable Back To Top Button In jQuery – jquery.gotop.js

Posted on

This time I will share jQuery Plugin and tutorial about Smart Configurable Back To Top Button In jQuery – jquery.gotop.js, hope it will help you in programming stack.

Smart Back To Top Button jQuery gotop js - Download Smart Configurable Back To Top Button In jQuery - jquery.gotop.js
File Size: 3.98 KB
Views Total: 4294
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

Yet another jQuery back to top plugin that enables a highly customizable button to smoothly scroll back to the top of the webpage when clicked.

More Features:

  • Auto shows the back to top button on scroll down.
  • Auto hides the button when you reach the top of the webpage.
  • Can be set to only work on mobile devices.

How to use it:

1. Create an empty element in which you want to display the back to top button.

1 <script src="//code.jquery.com/jquery.min.js"></script>
2 <script src="jquery.gotop.js"></script>

2. Include jQuery library and the jquery.gotop.js script at the bottom of the webpage.

1 <script src="//code.jquery.com/jquery.min.js"></script>
2 <script src="jquery.gotop.js"></script>

3. Initialize the plugin to generate a default back to top button that displays at the ‘Bottom Right’ of the webpage.

1 $('#gotop').gotop();

4. Override the following options to customize the back to top button as per your needs.

01 $('#gotop').gotop({
02  
03   // Background color
04   background : '#000',
05  
06   // Icon color
07   color: '#fff',
08  
09   // Rounded button?
10   rounded: true,
11  
12   // width/height
13   width: '45px',
14   height: '45px',
15  
16   // bottom position
17   bottom : '25px',
18  
19   // right position
20   right : '25px',
21  
22   // Window height after which show the button
23   window<a href="https://www.jqueryscript.net/tags.php?/Scroll/">Scroll</a>Show: 400,
24  
25   // animation speed
26   speed: 800,
27  
28   // custom html for the back to top button
29   customHtml: '',
30  
31   // Show button only on mobile device
32   mobileOnly: false
33    
34 });

This awesome jQuery plugin is developed by tomaggio83. For more Advanced Usages, please check the demo page or visit the official website.

source : jqueryscript.net