Super Simple Scroll Up To Top Plugin with jQuery - Download Super Simple Scroll Up To Top Plugin with jQuery

Download Super Simple Scroll Up To Top Plugin with jQuery

Posted on

This time I will share jQuery Plugin and tutorial about Super Simple Scroll Up To Top Plugin with jQuery, hope it will help you in programming stack.

Super Simple Scroll Up To Top Plugin with jQuery - Download Super Simple Scroll Up To Top Plugin with jQuery

File Size: 8.82 KB
Views Total: 2010
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

Just another jQuery plugin that inserts an auto- fade in/out scroll up to top button into the body when you scroll down the window.

How to use it:

1. Load jQuery library and the jquery.scrolluptotop.js script at the bottom of your document.

1 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
2 <script src="src/jquery.scrolluptotop.js"></script>

2. A little bit of CSS to style & position the scroll up to top button.

01 #<a href="https://www.jqueryscript.net/tags.php?/Scroll/">Scroll</a>UpToTop {
02   position: fixed;
03   right: 30px;
04   bottom: 30px;
05   width: 50px;
06   height: 50px;
07   z-index: 1000;
08   border: none;
09   border-radius: 5px;
10   background: rgba(0,0,0, 0.4);
11   color: #FFF;
12   font-size: 40px;
13   text-align: center;
14   padding-top: 10px;
15 }
16  
17 #ScrollUpToTop:hover { background: rgba(0,0,0,0.7); }

3. That’s it. When you click on the scroll to top button, the page will be scrolled to the top with a smooth scrolling animation. The plugin currently provides a speedUp option to specify the duration time of scrolling animation.

1 (function($){
2   $.ScrollUpToTop({
3     "speedUp":1500
4   });
5 })(jQuery);

4. More configuration options.

1 $.ScrollUpToTop({
2   "scrollText": "^",
3   "scrollClass": "scrollToTopDef",
4 });

Change log:

2017-07-08

  • Add speedUp option

2015-01-05

  • Add speedUp option

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

source : jqueryscript.net