Skip to content

Latest commit

History

History
executable file
19 lines (14 loc) 路 652 Bytes

README.md

File metadata and controls

executable file
19 lines (14 loc) 路 652 Bytes

A simple, performance optimized replacement for window.addEventListener('scroll', function(e) {...

The premiss for this module is to utilize animation frames to trigger scroll callbacks in the appropriate render pipeline location of each frame.

Install

npm i raf-scroll.js --save

Usage

import scroll from 'raf-scroll.js'

scroll( (y, prevY) => {
  //This callback will get executed on every scroll event..
})

The callback passed to the scroll function will get passed the current scrollY value (param 1) and the previous scrollY value (param 2). From this you will be able to ascertain scroll direction.