mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
882cec62d6
* docs: Add components overview page * fix detail * remove ContributorsList form overview page * fix components url * improve code style * remove extra file * fix detail * fix lint * fix lint * docs: Finish components overview page * fix lint * docs: Update cover * fix lint * update cover * update menu * improve overview page * refactor code * fix order * update title * add components count * fix overview page ssr bug * move less file * update title margin Co-authored-by: arvinxx <arvinx@foxmail.com>
31 lines
1.3 KiB
Markdown
31 lines
1.3 KiB
Markdown
---
|
|
category: Components
|
|
type: 反馈
|
|
title: Spin
|
|
subtitle: 加载中
|
|
cover: https://gw.alipayobjects.com/zos/alicdn/LBcJqCPRv/Spin.svg
|
|
---
|
|
|
|
用于页面和区块的加载中状态。
|
|
|
|
## 何时使用
|
|
|
|
页面局部处于等待异步数据或正在渲染过程时,合适的加载动效会有效缓解用户的焦虑。
|
|
|
|
## API
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 |
|
|
| ---------------- | -------------------------------------------- | ------------- | --------- |
|
|
| delay | 延迟显示加载效果的时间(防止闪烁) | number (毫秒) | - |
|
|
| indicator | 加载指示符 | ReactNode | - |
|
|
| size | 组件大小,可选值为 `small` `default` `large` | string | `default` |
|
|
| spinning | 是否为加载中状态 | boolean | true |
|
|
| tip | 当作为包裹元素时,可以自定义描述文案 | string | - |
|
|
| wrapperClassName | 包装器的类属性 | string | - |
|
|
|
|
### 静态方法
|
|
|
|
- `Spin.setDefaultIndicator(indicator: ReactNode)`
|
|
|
|
你可以自定义全局默认 Spin 的元素。
|