2.0.0 • Published 7 years ago

scroll-past v2.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

scroll-past

Return a Promise when any element is scroll past

Install

$ npm install scroll-past

Usage

const scrollPast = require('scroll-past');

scrollPast(document.querySelector('.container')).then(pos => {
	console.log(`I'm at ${pos}`);
});

API

scrollPast(element, options)

Returns a Promise that resolves the scrollY position of the window.

element

Type: Element

The element to check for.

options

threshold

Type: number Default: 0

Add a threshold to scroll past before the Promise is returned.

License

MIT © Kevin Mårtensson

2.0.0

7 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago