maxrolon / raf-scroll.js

๐Ÿš  Performant scroll events with request animation frame

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

๐Ÿš  Performant scroll events with request animation frame


Languages

Language:JavaScript 100.0%