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

v4.0.0

Published

A batteries-included smooth scroll controller driving native scrollTop with a tunable custom scrollbar, GSAP ScrollTrigger integration, anchor links, keyboard navigation, and more

Readme

@emotionagency/emotion-scroll

A batteries-included smooth scroll controller. Drives the real DOM scrollTop (not a transform), ships a drag-enabled custom scrollbar tunable purely through CSS variables, and bundles the integration glue — anchor links, keyboard navigation, GSAP ScrollTrigger, localStorage persistence, mobile breakpoint fallback, reduced-motion — so you don't assemble them yourself.

Why emotion-scroll

  • Custom scrollbar out of the box. Drag, click-to-jump, auto-hide, hover states, horizontal orientation. Style every aspect via --es-* CSS variables — no JS config, no extra package.
  • Truly native scroll position. Drives element.scrollTo() every frame, so IntersectionObserver, scroll-margin, native anchor fragments, and assistive tech keep working with zero extra wiring.
  • GSAP ScrollTrigger in one call. scroll.attachScrollTrigger(ST) wires scrollerProxy and forwards updates — no boilerplate.
  • Anchor links, handled. anchors: true intercepts <a href="#..."> clicks, smooth-scrolls, and updates the URL via history.pushState.
  • Keyboard scrolling. Arrows, Page Up/Down, Home/End, and Tab focus jumps animate with the same easing as everything else.
  • Mobile fallback by width or input type. Flip off smooth scroll below a viewport width, on a media query like '(hover: none) and (pointer: coarse)', or via a custom predicate — without re-instantiating.
  • Scroll position persistence. Opt-in saveScrollPosition restores across reloads from localStorage.
  • GSAP-style easing strings. 'power2.out', 'expo.inOut', etc., resolved at runtime alongside custom functions.
  • Respects prefers-reduced-motion. Auto-downgrades to instant jumps.
  • Infinite, horizontal, and manual-RAF modes included.

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 | 360 | Max accumulated wheel input per frame @60fps (prevents jarring jumps) | | scrollbar | boolean | true | Show custom scrollbar | | breakpoint | number \| string \| (() => boolean) \| null | null | Disable smooth scroll by viewport width, media query string (e.g. '(hover: none) and (pointer: coarse)'), or custom predicate | | 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()

attachScrollTrigger(ScrollTrigger, options?)

Wire the instance into GSAP ScrollTrigger. Registers a scrollerProxy so triggers read the animated position instead of the raw DOM scrollTop, and calls ScrollTrigger.update() on every emitted scroll event. Required whenever el is not document.documentElement; recommended even for window-scroll so pins and snaps stay in lock-step with the smooth value.

import {gsap} from 'gsap'
import {ScrollTrigger} from 'gsap/ScrollTrigger'

gsap.registerPlugin(ScrollTrigger)

const scroll = new EmotionScroll()
const detach = scroll.attachScrollTrigger(ScrollTrigger)

// Later, if you want to unbind without destroying the instance:
detach()

options.setAsDefault (default true): when el !== document.documentElement, also calls ScrollTrigger.defaults({scroller: el}) so new triggers pick it up without an explicit scroller argument.

The same helper is exported as a free function for tree-shaking:

import {attachScrollTrigger} from '@emotionagency/emotion-scroll'

attachScrollTrigger(scroll, ScrollTrigger)

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;
  --es-thumb-min-size: 60; /* minimum thumb length in px */
}

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'),
})

Nested swipeable components

Any component that installs its own touch handlers — carousels, image galleries, draggable maps, signature pads — should be wrapped with data-scroll-ignore, not just modals. Without it, a horizontal carousel swipe will double-scroll: the carousel moves its slides and the page scrolls the same delta.

<!-- Slider/carousel root -->
<div class="my-carousel" data-scroll-ignore>
  <div class="my-carousel__track">
    <div class="my-carousel__slide">…</div>
    <div class="my-carousel__slide">…</div>
  </div>
</div>

The attribute is matched on the touch target and any of its ancestors up to the scroll root, so placing it on the outermost swipeable element covers every child.

Manual RAF

For integration with an external render loop:

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

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

animate()

iOS-native momentum preset

The default inertia tuning is conservative. Spread iosMomentumPreset for a flick curve that matches the feel of native iOS scrolling — longer glide, higher cap, slightly softer settle:

import EmotionScroll, {iosMomentumPreset} from '@emotionagency/emotion-scroll'

const scroll = new EmotionScroll({
  ...iosMomentumPreset,
  // Override anything you need; the preset only touches touch options.
})

The preset is equivalent to:

{
  syncTouch: true,
  syncTouchLerp: 0.08,
  touchInertiaExponent: 2,
  maxTouchInertia: 3000,
}

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.

Credits

Built and maintained by Emotion Agency.

The animated-position / lerp model and the syncTouch inertia approach draw inspiration from Lenis — if you prefer a minimal, feature-light smooth scroller without the batteries-included extras, check them out.

License

MIT