Coder Social home page Coder Social logo

react-scroll-direction's Introduction

WithScrollDirection

Easily detect scroll direction changes.

Installation

npm install @serafinomb/react-scroll-direction

Usage

withScrollDirection(Component[, offsetThreshold = 0])
  • Component Your React component;
  • offsetThreshold Integer value. While the scroll amount (pixels from the top of the document) is below or equal to offsetThreshold, scrollDirection is going to be null.

Your component will receive the scrollDirection property which can assume the following values:

  • null when the scroll amount is less than or equal to offsetThreshold.
  • SCROLL_DIRECTION_DOWN when scrolling down (and the scroll amount is greater than offsetThreshold);
  • SCROLL_DIRECTION_UP when scrolling up (and the scroll amount is greater than offsetThreshold);

Example

import withScrollDirection, {
  SCROLL_DIRECTION_DOWN,
} from '@serafinomb/react-scroll-direction';

// 2. With the scrollDirection property, apply the right className to
//    show or hide the header.
const App = ({ scrollDirection }) => (
  <div>
    <div className={`header ${scrollDirection === SCROLL_DIRECTION_DOWN ? 'is-hidden' : ''}`}>
      My website header
    </div>
    ...
  </div>
);

// 1. Pass the component to the withScrollDirection HOC and optionally
//    specify an `offsetThreshold`
export default withScrollDirection(App, 80);

Demo

A demo can be found at /example.

To run it locally, clone the repository and run the following commands from the repository root:

  • npm install
  • npm run build
  • npm pack
  • cd example
  • npm install
  • npm run start

Development

As of right now I've not found a convenient way (other than npm link) to quickly test changes to the /src/index.js file. Since I don't think there are going to be any new developments in the near future, I'm going to leave it as is and invest some time to find a better development workflow when needed.

react-scroll-direction's People

Contributors

serafinomb avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.