百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
R

react-sticky

> 编程语言
开源

<Sticky /> 组件用于出色的 React 应用

2.6K stars0 点赞2 次浏览
访问官网GitHub

工具介绍

<Sticky /> 组件用于出色的 React 应用

# react-sticky [](https://travis-ci.org/captivationsoftware/react-sticky) Make your React components sticky! #### Update No longer actively maintained: The 6.0.3 release is the last release maintained. This means we will not be considering any PR's and/or responding to any issues until a new maintainer is identified. It is *highly* recommended that you begin transitioning to another sticky library to ensure better support and sustainability. This is obviously less than ideal - sorry for any inconvenience! #### Demos * [Basic](http://react-sticky.netlify.com/#/basic) * [Relative](http://react-sticky.netlify.com/#/relative) * [Stacked](http://react-sticky.netlify.com/#/stacked) #### Version 6.x Highlights * Completely redesigned to support sticky behavior via higher-order component, giving you ultimate control of implementation details * Features a minimal yet efficient API * Drops support for versions of React < 15.3. If you are using an earlier version of React, continue to use the 5.x series #### CSS There's a CSS alternative to `react-sticky`: the `position: sticky` feature. However it currently does not have [full browser support](https://caniuse.com/#feat=css-sticky), specifically a lack of IE11 support and some bugs with table elements. Before using `react-sticky`, check to see if the browser support and restrictions prevent you from using `position: sticky`, as CSS will always be faster and more durable than a JS implementation. ```css position: -webkit-sticky; position: sticky; top: 0; ``` ## Installation ```sh npm install react-sticky ``` ## Overview & Basic Example The goal of `react-sticky` is make it easier for developers to build UIs that have sticky elements. Some examples include a sticky navbar, or a two-column layout where the left side sticks while the right side scrolls. `react-sticky` works by calculating the position of a `` component relative to a `` component. If it would be outside the viewport, the styles required to affix it to the top of the screen are passed as an argument to a render callback, a function passed as a child. ```js {({ style }) =>

Sticky element

} ``` The majority of use cases will only need the style to pass to the DOM, but some other properties are passed for advanced use cases: * `style` _(object)_ - modifiable style attributes to optionally be passed to the element returned by this function. For many uses, this will be the only attribute needed. * `isSticky` _(boolean)_ - is the element sticky as a result of the current event? * `wasSticky` _(boolean)_ - was the element sticky prior to the current event? * `distanceFromTop` _(number)_ - number of pixels from the top of the `Sticky` to the nearest `StickyContainer`'s top * `distanceFromBottom` _(number)_ - number of pixels from the bottom of the `Sticky` to the nearest `StickyContainer`'s bottom * `calculatedHeight` _(number)_ - height of the element returned by this function The `Sticky`'s child function will be called when events occur in the parent `StickyContainer`, and will serve as the callback to apply your own logic and customizations, with sane `style` attributes to get you up and running quickly. ### Full Example Here's an example of all of those pieces together: app.js ``` … ``` When the "stickiness" becomes activated, the arguments to the sticky function are modified. Similarly, when deactivated, the arguments will update accordingly. ### `` Props `` supports all valid `` props. ### `` Props #### relative _(default: false)_ Set `relative` to `true` if the `` element will be rendered within an overflowing `` (e.g. `style={{ overflowY: 'auto' }}`) and you want the `` behavior to react to events only within that container. When in `relative` mode, `window` events will not trigger sticky state changes. Only scrolling within the nearest `StickyContainer` can trigger sticky state changes. #### topOffset _(default: 0)_ Sticky state will be triggered when the top of the element is `topOffset` pixels from the top of the closest ``. Positive numbers give the impression of a lazy sticky state, whereas negative numbers are more eager in their attachment. app.js ```js ... { props => (...) } ... ``` The above would result in an element that becomes sticky once its top is greater than or equal to 80px away from the top of the ``. #### bottomOffset _(default: 0)_ Sticky state will be triggered when the bottom of the element is `bottomOffset` pixels from the bottom of the closest ``. app.js ```js ... { props => (...) } ... ``` The above would result in an element that ceases to be sticky once its bottom is 80px away from the bottom of the ``. #### disableCompensation _(default: false)_ Set `disableCompensation` to `true` if you do not want your `` to apply padding to a hidden placeholder `` to correct "jumpiness" as attachment changes from `position:fixed` and back. app.js ```js ... { props => (...) } ... ``` #### disableHardwareAcceleration _(default: false)_ When `disableHardwareAcceleration` is set to `true`, the `` element will not use hardware acceleration (e.g. `transform: translateZ(0)`). This setting is not recommended as it negatively impacts the mobile experience, and can usually be avoided by improving the structure of your DOM. app.js ```js ... { props => (...) } ... ``` ## FAQ ### I get errors while using React.Fragments React.Fragments does not correspond to an actual DOM node, so `react-sticky` can not calculate its position. Because of this, React.Fragments is not supported.

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

JavaScript

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言