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) 组件的属性也是可用的。
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
classes | object | 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. |
disableShrink | bool | false | If true , the shrink animation is disabled. This only works if variant is indeterminate . |
size | number | 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'. |
sx | Array<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. | |
thickness | number | 3.6 | The thickness of the circle. |
value | number | 0 | 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-root | Styles applied to the root element. |
determinate | .MuiCircularProgress-determinate | Styles applied to the root element if variant="determinate" . |
indeterminate | .MuiCircularProgress-indeterminate | Styles applied to the root element if variant="indeterminate" . |
colorPrimary | .MuiCircularProgress-colorPrimary | Styles applied to the root element if color="primary" . |
colorSecondary | .MuiCircularProgress-colorSecondary | Styles applied to the root element if color="secondary" . |
svg | .MuiCircularProgress-svg | Styles applied to the svg element. |
circle | .MuiCircularProgress-circle | Styles applied to the `circle` svg path. |
circleDeterminate | .MuiCircularProgress-circleDeterminate | Styles applied to the `circle` svg path if variant="determinate" . |
circleIndeterminate | .MuiCircularProgress-circleIndeterminate | Styles applied to the `circle` svg path if variant="indeterminate" . |
circleDisableShrink | .MuiCircularProgress-circleDisableShrink | Styles applied to the `circle` svg path if disableShrink={true} . |
您可以使用组件自定义选项对组件进行个性化:
- 具备 全局类名.
- 在自定义主体中,设定一个规则名称作为组件的
styleOverrides
属性的一部分。