ant-design/components/tabs/demo/slide.md

51 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2017-02-04 01:13:35 +08:00
title:
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
可以左右、上下滑动,容纳更多标签。
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
```tsx
import React, { useState } from 'react';
import { Tabs, Radio } from 'antd';
import type { RadioChangeEvent } from 'antd';
2018-06-27 15:55:04 +08:00
const { TabPane } = Tabs;
2015-06-12 20:21:13 +08:00
type TabPosition = 'left' | 'right' | 'top' | 'bottom';
const App: React.FC = () => {
const [mode, setMode] = useState<TabPosition>('top');
const handleModeChange = (e: RadioChangeEvent) => {
setMode(e.target.value);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
return (
<div>
<Radio.Group onChange={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.from({ length: 30 }, (_, i) => i)].map(i => (
<TabPane tab={`Tab-${i}`} key={i} disabled={i === 28}>
Content of tab {i}
</TabPane>
))}
</Tabs>
</div>
);
};
export default App;
2019-05-07 14:57:32 +08:00
```