useSticky
跟踪元素是否粘滞
Usage
实时编辑器
function Demo() { const element = useRef<HTMLDivElement>(null); const [isSticky] = useSticky(element, { // header fixed height nav: 64, }); const stickyStyle: CSSProperties = isSticky ? { position: "fixed", top: 64, zIndex: 50, height: 20, } : { height: 20, }; const guardStyle: CSSProperties = { width: 1, height: 1, }; return ( <div style={{height: 300,overflow: 'scroll'}}> <div ref={element} style={guardStyle} /> <button style={stickyStyle}> {isSticky ? "stickying" : "not sticky"} </button> <div style={{ height: "100vh" }} /> </div> ); };
结果
Loading...
API
useSticky
Returns
[boolean, React.Dispatch<React.SetStateAction<boolean>>]
: 包含以下元素的元组:
- 当前是否粘滞。
- 更新粘滞值的函数。
Arguments
参数名 | 描述 | 类型 | 默认值 |
---|---|---|---|
targetElement | dom元素 | BasicTarget<HTMLElement> (必填) | - |
params | 可选参数 | UseStickyParams (必填) | - |
scrollElement | 滚动容器 | BasicTarget<HTMLElement> | - |
UseStickyParams
参数名 | 描述 | 类型 | 默认值 |
---|---|---|---|
axis | 滚动方向 | 'x' | 'y' | y |
nav | 沉浸式高度/宽度 | number (必填) | 0 |
BasicTarget
export type BasicTarget<T extends TargetType = Element> = (() => TargetValue<T>) | TargetValue<T> | MutableRefObject<TargetValue<T>>;
TargetValue
type TargetValue<T> = T | undefined | null;
TargetType
type TargetType = HTMLElement | Element | Window | Document | EventTarget;