New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

has-scrolled

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

has-scrolled

Add scroll info to elements.

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

Has Scrolled

Add scroll info to elements.

Install

npm i has-scrolled

Integrate

import hasScrolled from "has-scrolled";
hasScrolled();

Or, if you're compiling your own Typescript like a good little dev

import hasScrolled from "has-scrolled/index";
hasScrolled();

That's all well and good, but what does it do?

As you scroll down, it'll add a class and data attributes like so:

<body class="has-scrolled" data-scroll-y="120"></body>

Moar Powar!

If you want scroll info for within another element, for it to add a suffixed class to a separate element, or tweak any other default config values:

hasScrolled({
  element: document.querySelector("nav"),
  target: document.querySelector("body"),
  minScroll: 100,
  scrollTolerance: 50,
  class: "has-scrolled-foo"
});

FAQs

Package last updated on 13 Feb 2020

Did you know?

Socket

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.

Install

Related posts