Socket
Book a DemoInstallSign in
Socket

@graphcommerce/framer-scroller

Package Overview
Dependencies
Maintainers
2
Versions
675
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphcommerce/framer-scroller

In short: A React API for [Scroll Snap](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Scroll_Snap)

latest
Source
npmnpm
Version
9.0.4
Version published
Weekly downloads
644
26.77%
Maintainers
2
Weekly downloads
 
Created
Source

Framer scroller

In short: A React API for Scroll Snap

Features:

  • Pagination dots
  • Hide scrollbar
  • Prev / next buttons
  • Resize animatable
  • Scrollable on mobile and desktop (if the mouse supports horizontal scrolling)
  • Drag support on desktop (on mobile you just scroll the diff, having the same effect)

Goals:

  • Should use the platforms Scroll Snap features to do the heavy lifting
  • Should be resizable with an animatin without excessive rerenders

Required libraries:

  • Framer motion
  • Reach digital Image for the MotionImageAspect
  • Material UI

Minimal example

import {
  Scroller,
  ScrollerProvider,
  ScrollerDots,
  ScrollerButton,
} from '@graphcommerce/framer-scroller'

function MyScroller() {
  return (
    <ScrollerProvider>
      <Scroller>
        <div style={{ height: 400 }}>item1</div>
        <div style={{ height: 400 }}>item2</div>
        <div style={{ height: 400 }}>item3</div>
        <div style={{ height: 400 }}>item4</div>
        <div style={{ height: 400 }}>item5</div>
        <div style={{ height: 400 }}>item6</div>
        <div style={{ height: 400 }}>item7</div>
      </Scroller>
      <ScrollerButton>Next</ScrollerButton>
    </ScrollerProvider>
  )
}

More examples

See the example

FAQs

Package last updated on 27 Feb 2025

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