npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

scroll-spyoom

v1.1.3

Published

A library for intelligent detection of current rolling position and activation of node position based on MutationObserver API

Downloads

9

Readme

npm version npm bundle size

Scroll-Spyoom

A library for intelligent detection of current rolling position and activation of node position based on MutationObserver API

Features

  • High Performance
  • Friendly To Use
  • Typrscript Support
  • Lightweight ( 2kb or less by ES Module treeshaking )

Installation

$ npm install scroll-spyoom

Usage

You can copy the simple example to your local project and try it out to see the effect.

import { useEffect, useState } from 'react';
import { createNav } from 'scroll-spyoom';
import './index.less';

function rgb() {
  let r = Math.floor(Math.random() * 256);
  let g = Math.floor(Math.random() * 256);
  let b = Math.floor(Math.random() * 256);
  let rgb = 'rgb(' + r + ',' + g + ',' + b + ')';
  return rgb;
}

const itemList = Array.from({ length: 5 }, () => rgb());

const offsetTop = 0;
const navBarId = 'nav';
const navBarOffsetTop = -40;
const scrollEndOffsetTop = 80;

const Test = () => {
  const [isHeaderShow, setIsHeaderShow] = useState(true);

  const { activeIndex, setActiveIndex, isPinned, isScrollEnded, scrollEndDistance } = createNav({
    itemList,
    navBarId,
    offsetTop,
    navBarOffsetTop,
    scrollEndOffsetTop,
  });

  useEffect(() => {
    setIsHeaderShow(!isPinned || isScrollEnded);
  }, [isPinned, isScrollEnded]);

  const handleTo = () => {
    setActiveIndex(2, 'smooth');
  };

  return (
    <div className="test">
      <div onClick={handleTo}>跳转</div>
      <header style={{ opacity: isHeaderShow ? 1 : 0, background: 'red' }}>顶部内容</header>
      <div style={{ height: '300px' }}>内容块</div>
      <div className={`navBar ${isScrollEnded ? ' scrollEndNav' : ''}`} id={navBarId}>
        {isPinned ? (
          <div className="pinnedNav" style={{ top: scrollEndDistance - 60 + 'px' }}>
            pinned样式,激活元素:{activeIndex}
          </div>
        ) : (
          <div>
            static静态样式, navBarOffsetTop:{navBarOffsetTop},当前激活元素
            {activeIndex}
          </div>
        )}
      </div>
      {itemList.map((item, index) => (
        <div id={item} key={item} style={{ background: item, height: '200px', lineHeight: '200px' }}>
          元素{index}距顶{offsetTop}px激活;
          {activeIndex === index && '激活中'}
        </div>
      ))}
      <div style={{ height: '1000px' }}>底部元素</div>
    </div>
  );
};

export default Test;

index.less

.test {
  font-family: sans-serif;
  text-align: center;
  header {
    position: sticky;
    top: 0;
    z-index: 10;
    transition: opacity 1s;
  }

  .navBar {
    --top: 0px;

    height: 60px;
    background-color: pink;
    position: sticky;
    top: -60px;

    & > div {
      height: inherit;
      line-height: 60px;
    }
  }

  .pinnedNav {
    transform: translateY(80px);
    transition: transform 0.3s;
    background-color: yellow;
  }

  .scrollEndNav {
    position: static;

    & > .pinnedNav {
      background-color: blue;
      position: absolute;
      width: 100%;
    }
  }
}

Auto Resize Detection

You don't have to worry about "resize". You can change the size as much as you want, and Scroll-Spyoom will always worked.

Browser Compatibility

Same with Mutation Observer. You can optimize the compatibility by including polyfill.

$ npm install mutationobserver-shim --save-dev

Use it in your JavaScript file.

const observer = new window.MutationObserver(callback);

Now you can use MutationObserver, and mutationobserver-shim will provide support for it in browsers that do not support the native API. This is a simple way to provide cross-browser support for MutationObserver using the mutationobserver-shim package. You can easily use MutationObserver in your project without worrying about browser compatibility issues.