Table of Contents
You must have seen Navbars on some websites that hide and show when you scroll a little bit, that’s called Sticky or Dynamic Navbar.
You can implement this yourself in React using your React skills, but if you want to save some time and use a ready-made React component to implement Dynamic Navbar in your React app, there’s a React package called react-headroom.
React Headroom gives out-of-the-box sticky hide and shows behavior with a very smooth transition and you can apply it on any component but it’s mainly used for Headers or Navbars.
To demonstrate this I am going to create a new React project and use react-headroom in that.
Creating New React Project
First of I am going to create a new React project but if you already have a project created then you can skip this part.
To create a new react App you can you npm create-react-app projectName
or you can use any other build tools like Vite or create a Next Js app.
After creating my new React App and some changes my App.js
looks like this
Creating a simple Navbar
We’ll create a simple Navbar in our app so that we can make it sticky later.
Let’s just add some navigation links like Home, About Us, and Contact Us in Navbar
We are going to style it a little bit with CSS in style.css
file
Adding dummy content
We have to make our page longer in order to make it scrollable so that we can see the behavior of the header when we scroll.
Lets add some dummy paragraphs.
Now our app looks like this

Installing react-headroom package
To implement a sticky navbar we are going to use react-headroom which is an NPM package so in order to use it in our app we need to install it.
You can also follow the official documentation for this package by clicking here.
To install this package run the following command in the terminal.
Importing Headroom component
Now that the package has been successfully installed we can use it as a component anywhere in your app.
We can import the Headroom component from react-headroom
like this.
Using Headroom component
Now it is time to use the Headroom component to make our header sticky and dynamic when we scroll.
We just need to wrap our header
inside <Headroom> </Headroom>
and everything will be handled automatically.
And now we successfully made our header dynamic, when we scroll down it will disappear and when we scroll up it will show up after scrolling for a second.
You can see the live demo of it on code sandbox.
Other props and customization
Customization
The React Headroom component is designed to be effortlessly integrated into your project, providing default animation settings that work seamlessly. However, if you wish to override the default animation, you have two options available.
The first option is to override the inline styles directly within the component. Here’s an example of how you can achieve this:
Alternatively, you can utilize CSS to customize the animation. The component includes a headroom class, along with headroom–pinned or headroom–unpinned classes based on its pinned state.
As inline styles take precedence over CSS, you need to disable the inline styles by using the disableInlineStyles prop.
Additional Props
The React Headroom component offers several other props to enhance its functionality and customization:
- onPin: A callback function that is invoked when the header is pinned.
- onUnpin: A callback function that is triggered when the header is unpinned.
- onUnfix: A callback function that is called when the header is no longer in a fixed position.
- upTolerance: Specifies the scroll tolerance in pixels when scrolling up before the component is pinned.
- downTolerance: Sets the scroll tolerance in pixels when scrolling down before the component is pinned.
- disable: Disables the pinning and unpinning behavior of the component.
- wrapperStyle: Allows you to pass custom styles for the wrapper, maintaining the component’s vertical space at the top of the page.
- parent: Provides a custom “parent” element for scroll events. The parent prop should be a function that resolves to the desired element.
- pinStart: Specifies the height in pixels where the header should start and stop pinning. This is useful when you have another element above the Headroom component.
These additional props provide you with further control and flexibility over the behavior and appearance of the React Headroom component.