1.0.1 • Published 2 months ago

scrollyfills v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

ScrollyFills

Various importable functions to assist in polyfilling specced scroll features

Polyfills

scrollend

npm i -D scrollyfills

import {scrollend} from 'scrollyfills';

// use the new event as if it's been there the whole time
someElementThatScrolls.addEventListener('scrollend', event => {
  console.log('scroll has ended');
});