react-use-scroll
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

useScroll - Custom React Hook

A custom React Hook to get the vertical scroll of the window. Useful for conditionally rendering elements at fixed scroll points like Sticky Menus or Notifications.

Install

$ npm install react-use-scroll

Usage

import useScroll from 'react-use-scroll';
 
const scroll = useScroll();
 
console.log(scroll); //Stateful scroll value i.e. 0

Another example

import useScroll from 'react-use-scroll';
 
const App = props => {
  const scroll = useScroll();
  return (
    <div className='App'>
      <Navbar />
 
      {scroll === 0 && <p>This welcome message or banner disappears once the user scrolls down.</p>}
 
      {/* //Rest of the page  */}
    </div>
  );
};

License

MIT

Package Sidebar

Install

npm i react-use-scroll

Weekly Downloads

29

Version

1.0.3

License

MIT

Unpacked Size

2.93 kB

Total Files

5

Last publish

Collaborators

  • danielkhoo