You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.1 KiB

---
order: 3
title:
zh-CN: 滑动
en-US: Slide
---
10 years ago
## zh-CN
可以左右、上下滑动,容纳更多标签。
10 years ago
## en-US
7 years ago
In order to fit in more tabs, they can slide left and right (or up and down).
```jsx
import { Tabs, Radio } from 'antd';
const TabPane = Tabs.TabPane;
10 years ago
class SlidingTabsDemo extends React.Component {
constructor(props) {
super(props);
this.state = {
mode: 'top',
};
}
handleModeChange = e => {
const mode = e.target.value;
this.setState({ mode });
};
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>
<Tabs defaultActiveKey="1" tabPosition={mode} style={{ height: 220 }}>
{[...Array(30).keys()].map((i) => (
<TabPane tab={`Tab-${i}`} key={i}>
Content of tab {i}
</TabPane>
))}
</Tabs>
</div>
);
}
}
ReactDOM.render(<SlidingTabsDemo />, mountNode);
```