scrollmonitor-parallax icon indicating copy to clipboard operation
scrollmonitor-parallax copied to clipboard

A simple parallax API

Results 3 scrollmonitor-parallax issues
Sort by recently updated
recently updated
newest added
trafficstars

heya, does (or should) this use requestAnimationFrame? the demo example is quite janky in chrome even. cheers!

This adds support for passing a callback to `add`. My use case is wanting to use this library with Vue.js where I want to use Vue to set style attributes...

Shouldn't passive support be added to the `scroll` addEventListener? ``` var browserSupportsPassive = false; if (isInBrowser) { try { var opts = Object.defineProperty({}, 'passive', { get: function() { browserSupportsPassive =...