Socket
Socket
Sign inDemoInstall

@graphcommerce/framer-scroller

Package Overview
Dependencies
1
Maintainers
2
Versions
515
Alerts
File Explorer

Advanced tools

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)


Version published
Maintainers
2
Created

Readme

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

Last updated on 16 May 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc