Skip to content

Sauruz/bootstrap-scroll-indicator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bootstrap Scroll Indicator

A dynamic page length indicator for a Bootstrap navbar

Installation

You can install Bootstrap Scroll Indicator through bower:

bower install bootstrap-scroll-indicator

Usage

Include bootstrap-scroll-indicator.min.css in your header.

    <head>
        <link href="build/bootstrap-scroll-indicator.min.css" rel="stylesheet">
    </head>

Add a scrollindicator div at the bottom of your navbar

<div class="scroll-indicator-bar"></div>

Include bootstrap-scroll-indicator.min.js at the bottom of your file, and initialize the ScrolIndicator class.

	<script src="build/bootstrap-scroll-indicator.min.js"></script>
        <script>
            $(document).ready(function () {
                new ScrollIndicator({
                    colorBar: '#E5E5E5',
                    colorIndicator: '#66BB6A',
                    height: 5
                });
            });
        </script>

That's it.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published