scroll-handler

Smooth scroll handler


Keywords
scroll, handler, smooth, reflow
License
MIT
Install
npm install scroll-handler@0.1.0

Documentation

scroll-handler

Smooth scroll handler

Install

Use npm to install just run

npm install scroll-handler

Usage

var sh = require('scroll-handler');
sh({
  // Execute on start scrolling
  start: function(e, top) {
    console.log('Event', e, 'Scroll top', top);
  },
  // Execute on stop scrolling
  stop: ...
  // Execute periodicaly
  interval: ...
});