Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
intersection-events
Advanced tools
Wrapper of IntersectionObserver
You can detect when the whole element enters and leaves window.
npm i intersection-events
import IntersectionEvents from 'intersection-events'
<script src="https://unpkg.com/intersection-events"></script>
new IntersectionEvents('.js-target', {
onEnter: el => {
// When the whole element enters window
},
onLeave: el => {
// When the whole element leaves window
}
})
<div class="js-target"></div>
<!-- Set threshold only for this element -->
<div class="js-target" data-enter-threshold="0.5" data-leave-threshold="0.5"></div>
If you want to detect enter only once, set isOnce
option to true
.
new IntersectionEvents('.js-target', {
onEnter: el => {
// Do only once
},
isOnce: true
})
Edge | Firefox | Chrome |
---|---|---|
Edge | last version | last version |
If you need to support browsers that do not support IntersectionObserver
, load the IntersectionObserver
polyfill.
If the IntersectionObserver
polyfill is loaded, browsers support is as follows.
IE / Edge | Firefox | Chrome | Safari | iOS Safari |
---|---|---|---|---|
IE11, Edge | last version | last version | last version | last version |
If you want more features, please consider other libraries.
FAQs
Wrapper of IntersectionObserver
The npm package intersection-events receives a total of 0 weekly downloads. As such, intersection-events popularity was classified as not popular.
We found that intersection-events demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.