Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
scroll-breakpoint
Advanced tools
Do an action once - exactly on breakpoint - during scrolling the page.
Plugin aimed for reducing the overhead on a client side for scroll
event handling. In most cases we have to do some actions on exact breakpoint and continue scrolling the page, but many developers forget to check that actions has been performed and repeating them on every single event.
Let's add the sticky-header
class to the body
element as soon as scroll position will be below of 500 pixels and remove it otherwise.
window.scrollBreakpoint(function() {
return this.scrollY > 500;
}, function(isTrue) {
// This code will be executed exactly once when you'll reach the breakpoint.
document.body.classList[isTrue ? 'add' : 'remove']('sticky-header');
});
One bad example which I'm seeing all the time:
window.addEventListener('scroll', function() {
// This code will be executed every time during page scrolling.
document.body.classList[this.scrollY > 500 ? 'add' : 'remove']('sticky-header');
});
The result of two samples above will be completely the same. Customer will not see the difference. But in the first case, class to the body
will be added as soon as page will be scrolled to 500 pixels or below and removed when scroll location will be above of this height. In second one - the same actions will be performed every f***ing scroll. Check the demonstration and see by yourself.
FAQs
Do an action once - exactly on breakpoint - during scrolling the page.
The npm package scroll-breakpoint receives a total of 2 weekly downloads. As such, scroll-breakpoint popularity was classified as not popular.
We found that scroll-breakpoint 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.