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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@emotionagency/emotion-scroll

v3.0.1

Published

A library that animates the native scroll value using Virtual Scroll and custom scrollbar

Readme

@emotionagency/emotion-scroll

Smooth scroll library with native scroll integration and custom scrollbar. Built on top of virtual-scroll for input normalization, with frame-rate independent animation and full CSS variable customization.

Installation

npm i @emotionagency/emotion-scroll

Quick start

import EmotionScroll from '@emotionagency/emotion-scroll'
import '@emotionagency/emotion-scroll/css'

const scroll = new EmotionScroll()

// Listen to scroll events
scroll.on('scroll', ({position, direction, velocity, progress}) => {
  console.log({position, direction, velocity, progress})
})

// Scroll to a target
scroll.scrollTo('#section-2', {offset: -100})

// Cleanup
scroll.destroy()

Options

| Option | Type | Default | Description | | ---------------------- | -------------------------------------- | -------------------------- | ---------------------------------------------------------------- | | el | HTMLElement | document.documentElement | Scroll wrapper element | | content | HTMLElement | el | Content element for dimension tracking | | orientation | 'vertical' \| 'horizontal' | 'vertical' | Scroll axis | | gestureOrientation | 'vertical' \| 'horizontal' \| 'both' | auto | Which gesture axes to capture | | smoothWheel | boolean | true | Enable smooth wheel scrolling | | syncTouch | boolean | false | Enable smooth touch scrolling with inertia | | syncTouchLerp | number | 0.075 | Lerp factor for touch inertia animation | | touchInertiaExponent | number | 1.7 | Exponent for touch velocity inertia | | lerp | number | 0.1 | Lerp factor for scroll animation (0-1, higher = faster) | | duration | number | undefined | Fixed animation duration in seconds (alternative to lerp) | | easing | (t: number) => number | undefined | Easing function, used with duration | | touchMultiplier | number | 1 | Touch input multiplier | | wheelMultiplier | number | 1 | Wheel input multiplier | | maxScrollDelta | number | 120 | Max pixels per wheel event (prevents jarring jumps) | | scrollbar | boolean | true | Show custom scrollbar | | breakpoint | number \| null | null | Viewport width below which smooth scroll is disabled | | useKeyboardSmooth | boolean | true | Enable keyboard navigation (arrows, Page Up/Down, Home/End, Tab) | | keyboardScrollStep | number | 120 | Arrow key scroll distance in pixels | | disabled | boolean | false | Start in disabled state | | raf | { on, off } | null | Custom RAF instance. Uses @emotionagency/utils raf by default | | autoRaf | boolean | true | Auto-attach to RAF loop. Set false to call raf() manually | | autoResize | boolean | true | Auto-track size changes via ResizeObserver | | saveScrollPosition | boolean | false | Persist scroll position in localStorage | | prevent | (node: HTMLElement) => boolean | undefined | Callback to prevent smooth scroll on specific elements | | overscroll | boolean | true | Allow overscroll (native bounce) at boundaries | | infinite | boolean | false | Enable infinite (looping) scroll | | passive | boolean | false | Use passive event listeners | | maxTouchInertia | number | 1000 | Max inertia delta after touch release | | anchors | boolean \| ScrollToOptions | false | Auto-intercept anchor link clicks and smooth-scroll to target |

Methods

scrollTo(target, options?)

Scroll to a target with animation.

// Scroll to a pixel position
scroll.scrollTo(500)

// Scroll to an element
scroll.scrollTo(document.getElementById('section'))

// Scroll to a CSS selector
scroll.scrollTo('#section-2')

// Scroll to keywords
scroll.scrollTo('top') // or 'start', 'left'
scroll.scrollTo('bottom') // or 'end', 'right'

// With options
scroll.scrollTo('#section', {
  offset: -100, // additional offset in px
  immediate: true, // jump without animation
  duration: 1.5, // override animation duration
  easing: t => t, // override easing
  lerp: 0.05, // override lerp
  lock: true, // lock scroll until animation completes
  force: true, // scroll even when stopped
  onStart: instance => {},
  onComplete: instance => {},
})

on(event, callback) / off(event, callback)

Subscribe/unsubscribe to events.

const handler = ({position, direction, velocity, progress}) => {
  console.log(position)
}

scroll.on('scroll', handler)
scroll.off('scroll', handler)

// Virtual scroll events (raw wheel/touch input)
scroll.on('virtual-scroll', ({deltaX, deltaY, event}) => {
  console.log(deltaX, deltaY)
})

start() / stop()

Programmatically enable/disable scrolling.

// Disable (adds .e-fixed class)
scroll.stop()

// Re-enable
scroll.start()

reset()

Reset scroll position to 0.

scroll.reset()

resize()

Manually trigger a resize recalculation.

scroll.resize()

destroy()

Clean up all event listeners and DOM elements.

scroll.destroy()

Properties

| Property | Type | Description | | ---------------- | ------------------------------- | ------------------------------------------------------- | | animatedScroll | number | Current animated scroll position | | targetScroll | number | Target scroll position | | velocity | number | Current scroll velocity | | direction | 1 \| -1 \| 0 | Scroll direction | | progress | number | Scroll progress (0 to 1) | | limit | number | Maximum scrollable distance | | scroll | number | Scroll position (with modulo wrapping in infinite mode) | | isScrolling | false \| 'native' \| 'smooth' | Current scrolling state | | isStopped | boolean | Whether scrolling is stopped | | isHorizontal | boolean | Whether orientation is horizontal | | isMobile | boolean | Whether below breakpoint |

Styles

Import the built-in CSS:

import '@emotionagency/emotion-scroll/css'

This provides base styles for the scroll container, native scrollbar hiding, and the custom scrollbar with sensible defaults.

CSS variables

Override these variables to customize the scrollbar appearance:

:root {
  /* Scrollbar track */
  --es-scrollbar-width: 12px;
  --es-scrollbar-height: 100%; /* set to e.g. 300px for a shorter track */
  --es-scrollbar-top: 0;
  --es-scrollbar-right: 0;
  --es-scrollbar-padding: 2px;
  --es-scrollbar-bg: transparent;
  --es-scrollbar-z-index: 100000;

  /* Thumb */
  --es-thumb-width: 6px;
  --es-thumb-width-hover: 10px;
  --es-thumb-bg: #6b6b6b;
  --es-thumb-bg-hover: #8b5cf6;
  --es-thumb-border-radius: 7px;
  --es-thumb-border-radius-hover: 10px;
  --es-thumb-opacity: 0.7;
}

CSS classes applied automatically

| Class | Applied to | When | | --------------- | -------------- | ------------------------------- | | .es-smooth | scroll element | always (hides native scrollbar) | | .es-scrolling | scroll element | during scroll animation | | .e-fixed | scroll element | when stop() is called |

Prevent smooth scroll on elements

Add a data attribute to elements that should use native scrolling (e.g., modals, dropdowns, nested scrollable areas):

<div data-scroll-ignore>
  <!-- native scroll inside here -->
</div>

Or use the prevent callback:

const scroll = new EmotionScroll({
  prevent: node => node.classList.contains('modal'),
})

Manual RAF

For integration with an external render loop:

const scroll = new EmotionScroll({autoRaf: false})

function animate() {
  scroll.update()
  requestAnimationFrame(animate)
}

animate()

Anchor links

Enable anchors to auto-intercept <a href="#section"> clicks and smooth-scroll to the target:

const scroll = new EmotionScroll({anchors: true})

Pass ScrollToOptions to customize the animation:

const scroll = new EmotionScroll({
  anchors: {offset: -80}, // e.g. offset for a fixed header
})

Only same-page hash links are intercepted. External links and links to non-existent targets are ignored. The URL hash is updated via history.pushState.

License

MIT