Skip to main content

An official website of the United States government

Here's how you know

An official website of the United States government

Here's how you know

Theme:

Design system switcher

Version:

Design system switcher

Theme:

Design system switcher

Version:

Design system switcher

Spinner

Spinners signify that the application is waiting for an asynchronous operation to complete.

Examples

Loading

Changing the spinner color

To change the color of the spinner, one only has to change the color property of the spinner element. This can be done with the standard Design System utility classes. The color of the spinner also defaults to inherit, so it will take on the color of the text in its parent container.

Using inside buttons

"Filled" mode

To provide more contrast when being rendered over other content, the .ds-c-spinner--filled class can be added to give it an appropriately shaped background with some padding.

We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America.

Loading

We the People of the United States, in Order to form a more perfect Union, establish Justice, insure domestic Tranquility, provide for the common defence, promote the general Welfare, and secure the Blessings of Liberty to ourselves and our Posterity, do ordain and establish this Constitution for the United States of America.

Loading

Code

React

Preact/React documentation for Storybook

Style customization

The following CSS variables can be overridden to customize Spinner components:

CSS variables for spinner
VariableDefault Core Theme Value
--spinner__background-colorhex value: #ffffff--color-white
--spinner__colorhex value: #262626--color-base
--spinner__background-color--inversehex value: #00395e--color-background-inverse
--spinner__color--inversehex value: #ffffff--color-white

Guidance

When to use

  • To indicate a loading state for quick asynchronous tasks

When to consider alternatives

  • When the process it is waiting for takes a long time. Spinners provide no feedback other than that we're waiting, so long processes can make users nervous that something went wrong. Consider adding descriptive text or another UX pattern entirely.
  • When you are loading a whole page of content. If all you show the user is a spinner, the user may spend several seconds watching the spinner to be surprised with all the content all at once. Consider using a skeleton screen so the user knows what to expect.

Usage

  • If the process takes a long time, use something else.

Accessibility

  • The Spinner element should have an aria-valuetext attribute with a value of loading to provide a human readable text alternative for screen readers.
  • When placed within a parent container, the parent element should include several ARIA attributes: aria-relevant, aria-live, and optionally aria-atomic.
    • aria-relevant may include additions, text, and removals. If a section will have items added or removed, use additions removals. If there will be additions or text changes without explicit removals, use additions text.
    • aria-live should be set to polite for a screen reader to speak the changes whenever the user is idle. aria-live="assertive" should only be used in situations that require a user’s immediate attention.
    • By default, a screen reader will only speak the contents of a changed node, and not the entire contents of the element. Set aria-atomic="true" for cases, such as an address, where a screen reader should read the contents of the entire element.

Learn more

Component maturity

This component meets 100% of our maturity criteria.

What does this mean?

Each component is tested against the following items to gauge the component's maturity. When using incomplete components, consider the unmet criteria as applied to your product.

For more information about how we tested and validated our work for each checklist item, read our component maturity documentation.