跳转到内容

CircularProgress API

想要学习更多组件属性和 CSS API,可以查阅 React CircularProgress 组件的 API 文档。

导入

import CircularProgress from '@mui/material/CircularProgress';
// 或
import { CircularProgress } from '@mui/material';
你可以阅读这个关于最小化捆绑包的指南以了解以上二者的差异。

ARIA

If the progress bar is describing the loading progress of a particular region of a page, you should use aria-describedby to point to the progress bar, and set the aria-busy attribute to true on that region until it has finished loading.

组件名称

在主题中,名称“MuiCircularProgress”可用于提供默认属性(props),或者样式覆盖

属性

原生(Native) 组件的属性也是可用的。

名称类型默认值描述
classesobject
Override or extend the styles applied to the component. See CSS API below for more details.
color'inherit'
| 'primary'
| 'secondary'
| 'error'
| 'info'
| 'success'
| 'warning'
| string
'primary'
The color of the component. It supports both default and custom theme colors, which can be added as shown in the palette customization guide.
disableShrinkboolfalse
If true, the shrink animation is disabled. This only works if variant is indeterminate.
sizenumber
| string
40
The size of the circle. If using a number, the pixel unit is assumed. If using a string, you need to provide the CSS unit, e.g '3rem'.
sxArray<func
| object
| bool>
| func
| object
The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details.
thicknessnumber3.6
The thickness of the circle.
valuenumber0
The value of the progress indicator for the determinate variant. Value between 0 and 100.
variant'determinate'
| 'indeterminate'
'indeterminate'
The variant to use. Use indeterminate when there is no progress value.

ref 则会被传递到根元素中。

CSS

规则名称全局类名描述
root.MuiCircularProgress-rootStyles applied to the root element.
determinate.MuiCircularProgress-determinateStyles applied to the root element if variant="determinate".
indeterminate.MuiCircularProgress-indeterminateStyles applied to the root element if variant="indeterminate".
colorPrimary.MuiCircularProgress-colorPrimaryStyles applied to the root element if color="primary".
colorSecondary.MuiCircularProgress-colorSecondaryStyles applied to the root element if color="secondary".
svg.MuiCircularProgress-svgStyles applied to the svg element.
circle.MuiCircularProgress-circleStyles applied to the `circle` svg path.
circleDeterminate.MuiCircularProgress-circleDeterminateStyles applied to the `circle` svg path if variant="determinate".
circleIndeterminate.MuiCircularProgress-circleIndeterminateStyles applied to the `circle` svg path if variant="indeterminate".
circleDisableShrink.MuiCircularProgress-circleDisableShrinkStyles applied to the `circle` svg path if disableShrink={true}.

您可以使用组件自定义选项对组件进行个性化:

演示项目