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.
|
|
|
---
|
|
|
|
order: 4
|
|
|
|
title:
|
|
|
|
zh-CN: 右侧时间轴点
|
|
|
|
en-US: Right alternate
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
时间轴点可以在内容的右边。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Right alternate timeline.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Timeline } from 'antd';
|
|
|
|
import { ClockCircleOutlined } from '@ant-design/icons';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Timeline mode="right">
|
|
|
|
<Timeline.Item>Create a services site 2015-09-01</Timeline.Item>
|
|
|
|
<Timeline.Item>Solve initial network problems 2015-09-01</Timeline.Item>
|
|
|
|
<Timeline.Item dot={<ClockCircleOutlined style={{ fontSize: '16px' }} />} color="red">
|
|
|
|
Technical testing 2015-09-01
|
|
|
|
</Timeline.Item>
|
|
|
|
<Timeline.Item>Network problems being solved 2015-09-01</Timeline.Item>
|
|
|
|
</Timeline>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|