🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

PrognRoll is a tiny, lightweight jQuery plugin that creates scroll progress bar on the page.

Plugins

Documentation

PrognRoll

A tiny, lightweight jQuery plugin that creates scroll progress bar on the page

Install

Load jQuery and include PrognRoll file

<script src="jquery.js"></script> <script src="src/prognroll.js"></script>

or use CDN

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script src="https://rawcdn.githack.com/mburakerman/prognroll/0feda211643153bce2c69de32ea1b39cdc64ffbe/src/prognroll.js"></script>

Usage

To see scrolling progress on your page, you need to activate PrognRoll.

$(function() {   $("body").prognroll(); });

That's it!

You can also customize the progress bar. These are default settings.

$(function() {   $("body").prognroll({     height: 5, // progress bar height     color: "#50bcb6", // progress bar background color     custom: false // if you make it true, you can add your custom div and see it's scroll progress on the page   }); });

Examples

Body

<body> <!-- Content --> </body>
$(function() {   $("body").prognroll(); });

Body demo on CodePen

Custom div

<div class="box"> <!-- Content --> </div>
$(function() {   $(".box").prognroll({     custom: true   }); });

Custom div demo on CodePen

Size

0.9 kb minified

License

Licensed under the MIT License.


You May Also Like