mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
372 B
372 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
可以获得是否固定的状态。
en-US
Callback with affixed state.
import { Affix, Button } from 'antd';
ReactDOM.render(
<Affix offsetTop={120} onChange={affixed => console.log(affixed)}>
<Button>120px to affix top</Button>
</Affix>,
mountNode,
);