mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
0062867274
* new Layout Component (#4087) * change Anchor type * new Layout * Component update && add snap * Revert "new Layout Component" (#4131) * add Layout (#4169) * add Layout * update * fix snapshot * Improve layout component 1. update demo code 2. drop `position` of Sider 3. improve demo style
31 lines
893 B
Markdown
31 lines
893 B
Markdown
---
|
|
category: Components
|
|
subtitle: 锚点
|
|
cols: 2
|
|
type: Other
|
|
title: Anchor
|
|
---
|
|
|
|
用于跳转到页面指定位置。
|
|
|
|
## 何时使用
|
|
|
|
需要展现当前页面上可供跳转的锚点链接,以及快速在锚点之间跳转。
|
|
|
|
## API
|
|
|
|
### Anchor Props
|
|
|
|
| 成员 | 说明 | 类型 | 默认值 |
|
|
|-------------|----------------|--------------------|--------------|
|
|
| offsetTop | 距离窗口顶部达到指定偏移量后触发 | Number | |
|
|
| offsetBottom | 距离窗口底部达到指定偏移量后触发 | Number | |
|
|
| bounds | 锚点区域边界 | Number | 5(px) |
|
|
|
|
### Link Props
|
|
|
|
| 成员 | 说明 | 类型 | 默认值 |
|
|
|-------------|----------------|--------------------|--------------|
|
|
| href | 锚点链接 | String | |
|
|
| title | 文字内容 | React.Node | |
|