# Unbestimmte Streifen (B 184)

Kategorie: Buttons  
Tags: progress, rectangle, striped, animated, busy  
Seite: https://designforai.dev/de/snippet/btn-184

## Prompt

Ein Beschäftigt-Button mit diagonalen Barbershop-Streifen: abwechselnd 12px Bänder in #6366f1 und #4f46e5 bei -45 Grad, background-size 34px, damit die Bänder nahtlos kacheln, alle 0.8s seitwärts laufend. Weißer 14px semibold Text, 8px Radius, 13px mal 26px Padding, cursor progress, 90% Deckkraft (100% beim Hover). Gedacht als disabled, während eine Aufgabe läuft. Focus: 2px indigofarbene Outline.

## HTML

```html
<button class="btn-184" disabled>Processing</button>
```

## CSS

```css
.btn-184 {
  font: 600 14px/1 system-ui,sans-serif;
  color: #fff;
  background: repeating-linear-gradient(-45deg,#6366f1 0 12px,#4f46e5 12px 24px);
  background-size: 34px 34px;
  border: 0;
  border-radius: 8px;
  padding: 13px 26px;
  cursor: progress;
  animation: stripes184 .8s linear infinite;
  opacity: .9
}
.btn-184:hover {
  opacity: 1
}
.btn-184:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 3px
}
.btn-184:active {
  opacity: .8
}
@keyframes stripes184 {
  to {
    background-position: 34px 0
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-184, .btn-184 * { animation: none; transition: none; }
}
```
