Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
scrollmonitor
Advanced tools
The scroll monitor allows you to receive events when elements enter or exit a viewport. It does this using watcher objects, which watch an element and trigger events. Watcher objects also contain information about the element they watch, including the element's visibility and location relative to the viewport. If your scroll container is an element other than the body you can create a container that creates watchers.
The scroll monitor was designed to be very fast. On each scroll event the DOM is only touched twice, once to find the document height and again to find the viewport top. No variables are declared, nor are any objects, arrays, or strings created. Watchers are very cheap. Create them liberally.
The code is vanilla javascript and has no external dependencies, however the script cannot be put in the head.
Also see the React hooks, React component and the parallax library.
var scrollMonitor = require("scrollmonitor"); // if you're old school you can use the scrollMonitor global.
var myElement = document.getElementById("itemToWatch");
var elementWatcher = scrollMonitor.create( myElement );
elementWatcher.enterViewport(function() {
console.log( 'I have entered the viewport' );
});
elementWatcher.exitViewport(function() {
console.log( 'I have left the viewport' );
});
var containerElement = document.getElementById("container");
var containerMonitor = scrollMonitor.createContainer(containerElement);
// this containerMonitor is an instance of the scroll monitor
// that listens to scroll events on your container.
var childElement = document.getElementById("child-of-container");
var elementWatcher = containerMonitor.create(childElement);
elementWatcher.enterViewport(function() {
console.log( 'I have entered the viewport' );
});
elementWatcher.exitViewport(function() {
console.log( 'I have left the viewport' );
});
Note: an element is said to be in the viewport if it is scrolled into its parent, it does not matter if the parent is in the viewport.
Create watcher objects with scrollMonitor.create( watchItem )
. An optional second argument lets you receive events before or after this element enters the viewport. See "Offsets".
watchItem
can be one of the following:
obj.top
and obj.bottom
will be used for watcher.top and watcher.bottom.Watchers are automatically recalculated on the first scroll event after the height of the document changes.
Element watchers trigger six events:
visibilityChange
- when the element enters or exits the viewport.stateChange
- similar to visibilityChange
but is also called if the element goes from below the viewport to above it in one scroll event or when the element goes from partially to fully visible or vice versa.enterViewport
- when the element enters the viewport.fullyEnterViewport
- when the element is completely in the viewport [1].exitViewport
- when the element completely leaves the viewport.partiallyExitViewport
- when the element goes from being fully in the viewport to only partially [2].fullyEnterViewport
will be triggered when the element spans the entire viewport.partiallyExitViewport
will be triggered when the element no longer spans the entire viewport.elementWatcher.isInViewport
- true if any part of the element is visible, false if not.elementWatcher.isFullyInViewport
- true if the entire element is visible [1].elementWatcher.isAboveViewport
- true if any part of the element is above the viewport.elementWatcher.isBelowViewport
- true if any part of the element is below the viewport.elementWatcher.top
- distance from the top of the document to the top of this watcher.elementWatcher.bottom
- distance from the top of the document to the bottom of this watcher.elementWatcher.height
- top - bottom.elementWatcher.watchItem
- the element, number, or object that this watcher is watching.elementWatcher.offsets
- an object that determines the offsets of this watcher. See "Offsets".isFullyInViewport
is true when the element spans the entire viewport.elementWatcher.on/off/one
- the standard event functions.elementWatcher.recalculateLocation
- recalculates the location of the element in relation to the document.elementWatcher.destroy
- removes this watcher and clears out its event listeners.elementWatcher.lock
- locks this watcher at its current location. See "Locking".elementWatcher.unlock
- unlocks this watcher.These methods are automatically called by the scrollMonitor, you should never need them:
elementWatcher.update
- updates the boolean properties in relation to the viewport. Does not trigger events.elementWatcher.triggerCallbacks
- triggers any callbacks that need to be called.Sometimes you want to change the element you're watching, but want to continue watching the original area. One common use case is setting position: fixed
on an element when it exits the viewport, then removing positioning when it when it reenters.
var watcher = scrollMonitor.create( $element );
watcher.lock(); // ensure that we're always watching the place the element originally was
watcher.exitViewport(function() {
$element.addClass('fixed');
});
watcher.enterViewport(function() {
$element.removeClass('fixed');
});
Because the watcher was locked on the second line, the scroll monitor will never recalculate its location.
If you want to trigger an event when the edge of an element is near the edge of the viewport, you can use offsets. The offset is the second argument to scrollMonitor.create
.
This will trigger events when an element gets within 200px of the viewport:
scrollMonitor.create( element, 200 )
This will trigger when the element is 200px inside the viewport:
scrollMonitor.create( element, -200 )
If you only want it to affect the top and bottom differently you can send an object in.
scrollMonitor.create( element, {top: 200, bottom: 50})
If you only want it to affect the top and not the bottom you can use only one property in.
scrollMonitor.create( element, {top: 200})
scrollMonitor.createContainer( containerEl )
- returns a new ScrollMonitorContainer that can be used just like the scrollMonitor module.scrollMonitor.create( watchItem, offsets )
- Returns a new watcher. watchItem
is a DOM element, jQuery object, NodeList, CSS selector, object with .top and .bottom, or a number.scrollMonitor.update()
- update and trigger all watchers.scrollMonitor.recalculateLocations()
- recalculate the location of all unlocked watchers and trigger if needed.scrollMonitor.viewportTop
- distance from the top of the document to the top of the viewport.scrollMonitor.viewportBottom
- distance from the top of the document to the bottom of the viewport.scrollMonitor.viewportHeight
- height of the viewport.scrollMonitor.documentHeight
- height of the document.There is a set of unit tests written with Mocha + Chai that run in testem. Getting them running is simple:
npm install
npm test
then open http://localhost:7357
FAQs
A simple and fast API to monitor DOM elements as you scroll
We found that scrollmonitor 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.