throttled-event-listener

0.0.3 • Public • Published

throttled-event-listener

Throttle or debounce calls to window.addEventListener(). The listener will additionally be throttled by window.requestAnimationFrame().

#Demo

Install

$ npm install --save-dev throttled-event-listener

Usage

Throttle

var throttler = require('throttled-event-listener');
throttler.add(
    'scroll',
    1000,
    function(event) {
        // called a maximum of once per 1000ms
    }
);

Debounce

throttler.add(
    'scroll',
    1000,
    function(event) {
        // waits for a cooldown period of 1000ms between calls
    }, {
        debounce : true,
    }
);

Stop throttle

throttler.end();

Build

$ git clone ...
$ npm install
$ grunt serve

// Deployed to http://localhost:9001/

Dependencies (0)

    Dev Dependencies (16)

    Package Sidebar

    Install

    npm i throttled-event-listener

    Weekly Downloads

    447

    Version

    0.0.3

    License

    MIT

    Last publish

    Collaborators

    • vivmaha