mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 07:20:38 +00:00
1.0 KiB
1.0 KiB
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 2 |
|
zh-CN
用 target 设置 Affix 需要监听其滚动事件的元素,默认为 window。
en-US
Set a target for 'Affix', which is listen to scroll event of target element (default is window).
import React, { useState } from 'react';
import { Affix, Button } from 'antd';
const Demo: React.FC = () => {
const [container, setContainer] = useState(null);
return (
<div className="scrollable-container" ref={setContainer}>
<div className="background">
<Affix target={() => container}>
<Button type="primary">Fixed at the top of container</Button>
</Affix>
</div>
</div>
);
};
ReactDOM.render(<Demo />, mountNode);