ant-design/components/affix/demo/target.md
只捱宅 9913f992b7 docs: update demo of Affix whth hooks (#20124)
* chore: update for basic.md

* chore: update for debug.md

* chore: update for target.md

* chore: import react

* chore: update for debug.md with hooks

* chore: refactor with typescript
2020-01-03 11:55:35 +08:00

1.0 KiB

order title
2
zh-CN en-US
滚动容器 Container to scroll.

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, FC } from 'react';
import { Affix, Button } from 'antd';

const Demo: 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);