digitalfabrik / react-sticky-headroom

A React Component to hide a Header using CSS sticky position
MIT License
29 stars 4 forks source link
header react scrolling sticky styled-components

ReactStickyHeadroom

npm badge

ReactStickyHeadroom is a React component, that hides your header when you scroll down and shows it once you're scrolling up again. It's designed for best performance and can only be used if you know the height of your header component (or more precisely the amount of pixels you want ReactStickyHeadroom to hide). This helps us avoid calculating the height ourselves and therefore browsers don't need to perform heavy Recalculate-Style-Phases. For more information read here.

Since it's using styled-components internally, it's best to use it in apps where you already have styled-components in place. The component is only compatible with styled-components v4 and higher.

The component is inspired by react-headroom.

Usage

A basic usage example:

render () {
  return <StickyHeadroom scrollHeight={100}>
    <div style={{height: '100px', backgroundColor: 'red'}}>MyHeader</div>
  </StickyHeadroom>
}

Demo

Go to https://digitalfabrik.github.io/react-sticky-headroom/ to view a demo:

Demo

API

You can pass the following props to ReactStickyHeadroom:

Support

The component generally supports:

However, if you want to support non-modern browsers, you are responsible for transpiling the code for your preferred target. The distributed files on npm are transpiled for ES2020.

For hiding and revealing the header, the browser needs to support the css-property position: sticky. You can read about the browser support for that on caniuse.com. 'Partial-Support' is enough for ReactStickyHeadroom to work in most cases.

Since version 2.x.x, ReactStickyHeadroom is written in TypeScript. Support for FlowJS types were dropped in version 2.0.0.

ReactStickyHeadroom is a client-side library and hence does not support Server Side Rendering (SSR) a priori. For NextJS you can find more information on how to embed this library here.

If there are any problems, please don't hesitate to open an issue on GitHub.