# Drei-Punkte-Loader (B 083)

Kategorie: Buttons  
Tags: loading, dots, css-animation, pill  
Seite: https://designforai.dev/de/snippet/btn-083

## Prompt

Ein dunkler #111827 Pillen-Button, 120px breit und 42px hoch, disabled, mit drei 7px weißen Punkten, die nacheinander 6px hochhüpfen (150ms Versatz, 900ms Zyklus) und dabei zwischen 40% und 100% Opacity blenden. Kein Text. Cursor progress.

## HTML

```html
<button class="btn-083" disabled aria-label="Loading"><i></i><i></i><i></i></button>
```

## CSS

```css
.btn-083 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 120px;
  height: 42px;
  background: #111827;
  border: 0;
  border-radius: 999px;
  cursor: progress
}
.btn-083 i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: btn-083-b .9s infinite ease-in-out
}
.btn-083 i:nth-child(2) {
  animation-delay: .15s
}
.btn-083 i:nth-child(3) {
  animation-delay: .3s
}
@keyframes btn-083-b {
  0%,80%,100% {
    transform: translateY(0);
    opacity: .4
  }
  40% {
    transform: translateY(-6px);
    opacity: 1
  }
}
.btn-083:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 3px
}
@media (prefers-reduced-motion: reduce) {
  .btn-083, .btn-083 * { animation: none; transition: none; }
}
```
