Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

onscrolling

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

onscrolling

A better, smoother, more performant window.onscroll event interface using requestAnimationFrame for performance and mobile-compatibility

  • 2.0.0-beta.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
166
increased by38.33%
Maintainers
1
Weekly downloads
 
Created
Source

Jank-free onscrolling  build workflow

A better, smoother, more performant onscroll event interface based on the concepts from this html5rocks tutorial. It uses requestAnimationFrame plus debouncing for performance and mobile-compatibility (thanks to the touchmove event), giving you a fighting chance to achieve the hallowed 60fps of lore with your scroll-listening UI.

NPM

Usage

The module is ESM-only and exports a single default onscrolling function:

onscrolling( listener )

listener function (payload: { scrollX: number; scrollY: number }) => void

The function to call on a scroll event with a { scrollX: number; scrollY: number } payload object. In this default version, the module will only invoke the listener when the page has been scrolled vertically.

onscrolling( listener, options )

listener function (payload: { scrollX: number; scrollY: number }) => void

The function to call on a scroll event with a { scrollX: number; scrollY: number } payload object. The listener is invoked when the page is scrolled in any of the direction specified in the options object (only once per event).

options object { horizontal?: boolean; vertical?: boolean; x?: boolean; y?: boolean }

The scroll axis or axes to monitor. x is an alias for horizontal, and y is an alias for vertical. If neither horizontal nor vertical are true, vertical is used as the default. To listen for any scroll event in any direction, set both horizontal and vertical to true.

onscrolling return value

onscrolling function (listener: Listener, options?: Options) => () => void

The onscrolling function returns a cleanup function that takes no arguments and is used to remove the passed-in scroll event listener.

Dependencies

None.

Compatibility

Out of the box, onscrolling uses requestAnimationFrame, which is only available in IE10+. For older browsers, your scroll watchers simply won’t run. To add compatibility for those browsers, just include a requestAnimationFrame polyfill.

Tests

Tests use vitest + happy-dom, and can be run with yarn test.

TODO

  • Add optional param to specify an object other than window to monitor for scroll events
  • Expose measure and mutate functions to attach handlers specifically to the measuring (read) or mutating (write) portion of each cycle to minimize layout calculations

Misc

Note: This package was formerly known as jank-free-onscroll

Keywords

FAQs

Package last updated on 15 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc