2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2017-02-04 01:13:35 +08:00
|
|
|
title:
|
2016-08-23 14:15:34 +08:00
|
|
|
zh-CN: 滑动
|
|
|
|
en-US: Slide
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-06-12 20:21:13 +08:00
|
|
|
|
2016-08-03 10:39:20 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2017-06-23 15:02:23 +08:00
|
|
|
可以左右、上下滑动,容纳更多标签。
|
2015-06-12 20:21:13 +08:00
|
|
|
|
2016-08-03 10:39:20 +08:00
|
|
|
## en-US
|
|
|
|
|
2018-05-26 13:15:43 +08:00
|
|
|
In order to fit in more tabs, they can slide left and right (or up and down).
|
2016-08-03 10:39:20 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2017-04-22 09:43:32 +08:00
|
|
|
import { Tabs, Radio } from 'antd';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2015-10-28 20:55:49 +08:00
|
|
|
const TabPane = Tabs.TabPane;
|
2015-06-12 20:21:13 +08:00
|
|
|
|
2017-04-22 09:43:32 +08:00
|
|
|
class SlidingTabsDemo extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
mode: 'top',
|
|
|
|
};
|
|
|
|
}
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
handleModeChange = e => {
|
2017-04-22 09:43:32 +08:00
|
|
|
const mode = e.target.value;
|
|
|
|
this.setState({ mode });
|
2019-05-07 14:57:32 +08:00
|
|
|
};
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2017-04-22 09:43:32 +08:00
|
|
|
render() {
|
|
|
|
const { mode } = this.state;
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Radio.Group onChange={this.handleModeChange} value={mode} style={{ marginBottom: 8 }}>
|
|
|
|
<Radio.Button value="top">Horizontal</Radio.Button>
|
|
|
|
<Radio.Button value="left">Vertical</Radio.Button>
|
|
|
|
</Radio.Group>
|
2019-05-07 14:57:32 +08:00
|
|
|
<Tabs defaultActiveKey="1" tabPosition={mode} style={{ height: 220 }}>
|
|
|
|
<TabPane tab="Tab 1" key="1">
|
|
|
|
Content of tab 1
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 2" key="2">
|
|
|
|
Content of tab 2
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 3" key="3">
|
|
|
|
Content of tab 3
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 4" key="4">
|
|
|
|
Content of tab 4
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 5" key="5">
|
|
|
|
Content of tab 5
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 6" key="6">
|
|
|
|
Content of tab 6
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 7" key="7">
|
|
|
|
Content of tab 7
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 8" key="8">
|
|
|
|
Content of tab 8
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 9" key="9">
|
|
|
|
Content of tab 9
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 10" key="10">
|
|
|
|
Content of tab 10
|
|
|
|
</TabPane>
|
|
|
|
<TabPane tab="Tab 11" key="11">
|
|
|
|
Content of tab 11
|
|
|
|
</TabPane>
|
2017-04-22 09:43:32 +08:00
|
|
|
</Tabs>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(<SlidingTabsDemo />, mountNode);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|