2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
2016-07-10 08:56:02 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 基本
|
|
|
|
en-US: Basic
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-08-03 16:49:42 +08:00
|
|
|
|
2016-07-10 08:56:02 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-08-03 16:49:42 +08:00
|
|
|
最简单的用法。
|
|
|
|
|
2016-07-10 08:56:02 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
The simplest usage.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Affix, Button } from 'antd';
|
2015-08-03 16:49:42 +08:00
|
|
|
|
2018-06-15 17:53:08 +08:00
|
|
|
class Demo extends React.Component {
|
|
|
|
state = {
|
|
|
|
top: 10,
|
|
|
|
bottom: 10,
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2018-06-15 17:53:08 +08:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Affix offsetTop={this.state.top}>
|
|
|
|
<Button
|
|
|
|
type="primary"
|
|
|
|
onClick={() => {
|
|
|
|
this.setState({
|
|
|
|
top: this.state.top + 10,
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
Affix top
|
|
|
|
</Button>
|
|
|
|
</Affix>
|
|
|
|
<br />
|
|
|
|
<Affix offsetBottom={this.state.bottom}>
|
|
|
|
<Button
|
|
|
|
type="primary"
|
|
|
|
onClick={() => {
|
|
|
|
this.setState({
|
|
|
|
bottom: this.state.bottom + 10,
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
Affix bottom
|
|
|
|
</Button>
|
|
|
|
</Affix>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-27 15:55:04 +08:00
|
|
|
ReactDOM.render(<Demo />, mountNode);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|