npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

scroll-fever

0.0.0

@zeke

npmRepoSnykSocket
Downloads:12
$ npm install scroll-fever
DailyWeeklyMonthlyYearly

Scroll Fever

A progress bar that fills up as you scroll down the page in your browser.

Installation

npm install scroll-fever --save

Usage

In your application's javascript file:

// pre-browserify.js
var ScrollFever = require('scroll-fever')
new ScrollFever()

Add styles:

#scroll-fever {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 6px;
  background: red;
}

Use browserify to bundle it up for the browser:

browserify pre-browserify.js -o post-browserify.js

Demo

See the demo directory in the repo.