# Lavalampe innen (B 113)

Kategorie: Buttons  
Tags: liquid, pill, animated, gradient, blob-inside  
Seite: https://designforai.dev/de/snippet/btn-113

## Prompt

Eine dunkelbraune #7c2d12 Pille mit zwei weichgezeichneten orangen #f97316 und gelben #facc15 Blobs, die darin treiben und rotieren (5s alternierender Loop, Blur 6px, 75% Opacity, overflow hidden) wie eine Lavalampe. Weißer Text 15px bold, 14px mal 32px Padding. Hover beschleunigt die Blobs auf 2s; active skaliert auf 0.97. Fokus 2px orange Outline mit 4px Offset.

## HTML

```html
<button class="btn-113">Melt</button>
```

## CSS

```css
.btn-113 {
  position: relative;
  overflow: hidden;
  font: 700 15px/1 system-ui,sans-serif;
  color: #fff;
  background: #7c2d12;
  border: 0;
  border-radius: 999px;
  padding: 14px 32px;
  cursor: pointer;
  isolation: isolate
}
.btn-113::before,.btn-113::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 200%;
  top: -50%;
  left: -20%;
  border-radius: 45% 55% 60% 40%/50% 40% 60% 50%;
  background: #f97316;
  filter: blur(6px);
  opacity: .75;
  z-index: -1;
  animation: lava113 5s ease-in-out infinite alternate
}
.btn-113::after {
  left: 50%;
  background: #facc15;
  animation-delay: -2.5s
}
.btn-113:hover::before,.btn-113:hover::after {
  animation-duration: 2s
}
.btn-113:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 4px
}
.btn-113:active {
  transform: scale(.97)
}
@keyframes lava113 {
  to {
    transform: translate(20%,10%) rotate(40deg);
    border-radius: 55% 45% 40% 60%/40% 60% 40% 60%
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-113, .btn-113 * { animation: none; transition: none; }
}
```
