mirror of
https://github.com/primer/css.git
synced 2024-12-25 23:23:47 +03:00
6b6e89a8bf
* use standard lifecyle milestones for statuses * Create neat-laws-matter.md
27 lines
879 B
Markdown
27 lines
879 B
Markdown
---
|
|
title: Loaders
|
|
path: components/loaders
|
|
status: Beta
|
|
source: 'https://github.com/primer/css/tree/main/src/loaders'
|
|
bundle: loaders
|
|
---
|
|
|
|
Loaders inform users that an action is still in progress and might take a while to complete.
|
|
|
|
## Animated ellipsis
|
|
|
|
Add an animated ellipsis at the end of text with `<span class="AnimatedEllipsis"></span>`.
|
|
|
|
```html live
|
|
<span>Loading</span><span class="AnimatedEllipsis"></span>
|
|
```
|
|
|
|
It can also be used in combination with other components.
|
|
|
|
```html live
|
|
<h2><span>Loading</span><span class="AnimatedEllipsis"></span></h2>
|
|
<span class="branch-name mt-2"><span>Loading</span><span class="AnimatedEllipsis"></span></span><br>
|
|
<span class="Label mt-3"><span>Loading</span><span class="AnimatedEllipsis"></span></span><br>
|
|
<button class="btn mt-3" aria-disabled="true"><span>Loading</span><span class="AnimatedEllipsis"></span></button>
|
|
```
|