JSPM

react-smooth-scrollbar-z

2.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q40147F
  • License MIT

React wrap scrollbar (Smooth Scrollbar-Hook)

Package Exports

  • react-smooth-scrollbar-z
  • react-smooth-scrollbar-z/build/index.esm.js
  • react-smooth-scrollbar-z/build/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-smooth-scrollbar-z) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-smooth-scrollbar-z


LIVE EXAMPLE

Description


Usage

npm install react-smooth-scrollbar-z

Import the module in the place you want to use:

import Scrollbar from 'react-smooth-scrollbar-z'

Snippet

simple
    // const root = useRef(null);
    <Scrollbar
        // ref={root}
        alwaysShowTracks
        overEffect={"bounce" | "glow"} // plugin = overscroll
    >
        { something1...  }
    </Scrollbar>

    <Scrollbar
        alwaysShowTracks
        plugins={{
          overscroll: {
            effect: 'bounce',
          } as const
        }}>
        { something1...  }
    </Scrollbar>

    // dosomething
    <Scrollbar
        alwaysShowTracks
        height="100px"
        width="200px"
        damping={number}
        thumbMinSize={number}
        renderByPixels={boolean}
        continuousScrolling={boolean}
        wheelEventTarget={element}
        // overEffect={"bounce" | "glow"}
        onScroll={() => console.log('pabcd')}
      >
      { something1...  }
    </Scrollbar>


plugins

Options for plugins, see Plugin.

options

ScrollbarOptions: from smooth-scrollbar/interfaces

RUN

LIVE EXAMPLE

npm install
npm run dev
npm run start

License

MIT