An open API service indexing awesome lists of open source software.

https://github.com/argyleink/scrollyfills

grab and go polyfill functions for web scroll features
https://github.com/argyleink/scrollyfills

polyfills scroll

Last synced: about 1 year ago
JSON representation

grab and go polyfill functions for web scroll features

Awesome Lists containing this project

README

          

# ScrollyFills
#### Various importable functions to assist in polyfilling specced scroll features


## Polyfills

### `scrollend`
`npm i scrollyfills`

```js
import 'scrollyfills';

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