![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
on-intersect
Advanced tools
Call back when an element intersects with another.
var intersectExists = require('on-intersect/exists')
var onViewport = require('on-intersect')
var html = require('bel')
var el = html`<h1 style="color: white">BECOME THE GOBLIN!</h1>`
var main = html`
<main>
<div style="height: 110vh"></div>
${el}
</main>
`
document.body.appendChild(main)
// observers should only be added _after_ the element is rendered on the DOM,
// else it displeases the browser emperors and they _will_ warn you
if (intersectExists()) {
onIntersect(el, onEnter, onExit)
}
function onEnter (entry) {
console.log(entry.time)
console.log(entry.rootBounds)
console.log(entry.intersectionRect)
console.log(entry.intersectionRatio)
console.log(entry.target)
document.body.setAttribute('style', 'background-color: green')
}
function onExit (entry) {
document.body.setAttribute('style', 'background-color: white')
}
Call a callback when an element intersects with another. Defaults to
document.body
. The first argument can either be an HTML Node or an object. If
it's an object it must contain a target
which is an HTML node. Options can be:
"10px 20px 30px 40px"
(top, right, bottom, left). If the
root element is specified % values can be used.onEnter
every time
the threshold is passed. threshold
defaults to 1.Check if window.InterSectionObserver
exists
$ npm install on-intersect
FAQs
Call back when an element intersects with another
The npm package on-intersect receives a total of 4 weekly downloads. As such, on-intersect popularity was classified as not popular.
We found that on-intersect 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.