progressbar
Widget roleDisplays the completion progress of a task that takes time, such as a file upload. It exposes aria-valuenow between aria-valuemin and aria-valuemax, or omits valuenow to indicate indeterminate progress. Screen readers announce the percentage complete.
Used on
Shows progress of a lengthy task. Prefer <progress>.
Accessible name
Required, via aria-labelledby or aria-label.
Example
role="progressbar"
<div role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100" aria-label="Upload">…</div>References