Skip to content

argyleink/scrollyfills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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');
});