--- order: 3 title: zh-CN: 滑动 en-US: Slide --- ## zh-CN 可以左右、上下滑动,容纳更多标签。 ## en-US 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; 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 (