Quantcast
Channel: Recent Gists from devnix
Viewing all articles
Browse latest Browse all 15

Snippet for easily using requestAnimationFrame with browser events

$
0
0
README.md

Usage

var OptimizedEvent = require('optimizedEvent');
var optimizedEvent = new OptimizedEvent();

optimizedEvent.add(function() {
  console.log('requestAnimationFrame\'d scroll :-D');
}, 'scroll');


optimizedEvent.add(function() {
  console.log('requestAnimationFrame\'d resize B-)');
}, 'resize');
OptimizedEvent.js
/**
* @constructor
*/
function OptimizedEvent() {
this.callbacks = [];
this.running = false;
}
/**
* @public
* @param {callback} Function to execute method
* @param {string} Name of the event
*/
OptimizedEvent.prototype.add = function add(callback, event) {
if (!this.callbacks.length) {
window.addEventListener(event, this.eventFire.bind(this));
}
this.addCallback(callback);
};
/**
* @private
* Adds callback to loop
*/
OptimizedEvent.prototype.addCallback = function addCallback(callback) {
if (callback) {
this.callbacks.push(callback);
}
};
/**
* @private
* Run the actual callbacks
*/
OptimizedEvent.prototype.runCallbacks = function runCallbacks() {
this.callbacks.forEach(function(callback) {
callback();
});
this.running = false;
};
/**
* @private
* Fired on resize event
*/
OptimizedEvent.prototype.eventFire = function eventFire() {
if (!this.running) {
this.running = true;
if (window.requestAnimationFrame) {
window.requestAnimationFrame(this.runCallbacks.bind(this));
} else {
setTimeout(this.runCallbacks, 66);
}
}
};
module.exports = OptimizedEvent;

Viewing all articles
Browse latest Browse all 15

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>