Inputs

Volume Slider

A volume slider with a live icon: the speaker waves fade as the level drops, and the button on the left mutes the sound and restores the previous level.

  • slider
  • volume
  • media
  • icon

Preview

1440pxHost theme

Use it with AI

  1. 1. Copy the link.
  2. 2. Write to your agent in your own words and drop the link into the sentence.
  3. 3. The agent opens the link and installs the component from the registry.

put this in the header: https://vibeui.ru/c/slider-005?lang=en

60%
Show the full instructions

What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.

# Install and place "slider-005" (Volume Slider) from VibeUI

## 1. Install first — do not skip, do not recreate
Run this exact command before writing any code:
npx shadcn@latest add https://vibeui.ru/r/slider-005.json

Registry item: https://vibeui.ru/r/slider-005.json
Installs to: components/vibeui/slider-005.tsx (the exact path follows this project's components.json aliases).
npm dependencies: none.
Registry dependencies: none.

Install it from the registry. Do not recreate it from the description,
do not substitute a similar component from another library, and do not
rewrite it to match the project's existing style.

## 2. What it is
A volume slider with a live icon: the speaker waves fade as the level drops, and the button on the left mutes the sound and restores the previous level.

A volume control with an icon reacting to the level and a mute button. One file, zero dependencies, a client component.

## 3. How to use it
import { Slider005 } from "@/components/vibeui/slider-005"

<Slider005
  label="Volume"
  defaultValue={35}
/>

Read the installed file for the full prop list.

## 4. Where to place it
This is a small inline component. Put it exactly where the user asked,
inside the existing markup. Do not create a new page, section or
wrapper for it. If a similar control already sits in that spot,
replace it instead of adding a second one.

Placement: ___
(The user fills this line in. If it is still blank, ask where to put it
instead of guessing.)

## 5. Keep exactly as installed
- the local --vibeui-slider-005-* palette — do not swap it for your theme tokens
- restoring the previous level on unmute: resetting to zero makes people hunt for their volume again
- aria-pressed on the button — the muted state has to be announced, not merely drawn
- selecting the waves with an adjacent combinator: nth-of-type counts every span here and misses
- the icon built from clip-path and borders: an icon package would break the one-file, zero-dependency rule
- the component's own light surface — without it the dark text disappears on a dark page

## 6. You may change
- the slider's accessible name through label
- the starting level through defaultValue
- the button caption through muteText
- the accent colour through accent

## 7. Rules
- There are three volume steps: half the scale and zero — change the level computation for other logic.
- The component plays nothing: it only reflects a level, the player owner wires the sound.
- The mute button is the one fixed-size element: do not shrink it below the tap target.
- Do not lift the CSS variables into globals.css: the component has to stay a single file.

## 8. Verify
- it renders with no console errors;
- it looks like the preview on the VibeUI page you copied this from;
- if it does not, you changed something listed in section 5 — put it back.

For developers

npx shadcn@latest add https://vibeui.ru/r/slider-005.json
https://vibeui.ru/r/slider-005.json

Клиентский компонент: useState на текущий уровень и на запомненный перед выключением. Уровень сводится к трём ступеням и кладётся в data-level на корне, откуда CSS гасит волны. Динамик вырезан clip-path, волны — дуги из кругов с прозрачными гранями, выбираются соседним комбинатором, а не nth-of-type: тип у всех узлов один и тот же span. Кнопка объявлена aria-pressed. Палитра в --vibeui-slider-005-*.

Component source

The same file your agent installs. Here in case you would rather copy it by hand.

"use client"

import { useId, useState } from "react"
import type { ComponentPropsWithoutRef, CSSProperties } from "react"

export type Slider005Props = Omit<
  ComponentPropsWithoutRef<"div">,
  "children" | "defaultValue" | "onChange"
> & {
  label?: string
  defaultValue?: number
  muteText?: string
  accent?: string
}

// Идея компонента: громкость с иконкой, которая живёт вместе со звуком.
// Волны у динамика гаснут по мере убывания громкости, а кнопка слева не
// просто рисунок: она глушит звук и возвращает прежний уровень обратно —
// это единственный жест, который человек делает чаще, чем тянет ползунок.
const STYLES = `
:where([data-vibeui-block="slider-005"]){
--vibeui-slider-005-bg:oklch(1 0 0);
--vibeui-slider-005-fg:oklch(0.22 0.014 265);
--vibeui-slider-005-muted:oklch(0.6 0.014 265);
--vibeui-slider-005-border:oklch(0.9 0.006 265);
--vibeui-slider-005-track:oklch(0.92 0.006 265);
--vibeui-slider-005-accent:oklch(0.55 0.19 300);
--vibeui-slider-005-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
--vibeui-slider-005-fill:60%;
}
[data-vibeui-block="slider-005"]{
display:flex;align-items:center;gap:0.75rem;
width:100%;max-width:19rem;box-sizing:border-box;padding:0.75rem 0.875rem;
background:var(--vibeui-slider-005-bg);
border:1px solid var(--vibeui-slider-005-border);border-radius:0.875rem;
font-family:var(--vibeui-slider-005-font);color:var(--vibeui-slider-005-fg);
}
[data-vibeui-block="slider-005"] [data-part="mute"]{
appearance:none;flex:none;cursor:pointer;
display:grid;place-items:center;
width:2rem;height:2rem;padding:0;border:0;border-radius:0.5rem;
background:transparent;color:var(--vibeui-slider-005-fg);
transition:background-color .16s ease;
}
[data-vibeui-block="slider-005"] [data-part="mute"]:hover{background:color-mix(in oklab,var(--vibeui-slider-005-accent) 10%,transparent)}
[data-vibeui-block="slider-005"] [data-part="mute"]:focus-visible{outline:2px solid var(--vibeui-slider-005-accent);outline-offset:2px}
[data-vibeui-block="slider-005"] [data-part="icon"]{position:relative;width:1.25rem;height:0.875rem}
/* Динамик: корпус и раструб вырезаны одним clip-path — иконка без SVG
   и без пакета иконок. Волны лежат снаружи, иначе обрезка съела бы их. */
[data-vibeui-block="slider-005"] [data-part="speaker"]{
position:absolute;left:0;top:50%;margin-top:-0.375rem;
width:0.75rem;height:0.75rem;background:currentColor;
clip-path:polygon(0 30%,35% 30%,70% 0,70% 100%,35% 70%,0 70%);
}
/* Волны: дуги из кругов, у которых видна только правая грань. */
[data-vibeui-block="slider-005"] [data-part="wave"]{
position:absolute;top:50%;
border:1.5px solid currentColor;border-radius:9999px;
border-left-color:transparent;border-bottom-color:transparent;border-top-color:transparent;
transform:translateY(-50%);
}
[data-vibeui-block="slider-005"] [data-part="wave"]{left:0.5rem;width:0.5rem;height:0.5rem}
/* Вторая дуга выбирается соседним комбинатором, а не nth-of-type:
   тип у всех трёх узлов один и тот же — span. */
[data-vibeui-block="slider-005"] [data-part="wave"] + [data-part="wave"]{left:0.4375rem;width:0.875rem;height:0.875rem}
[data-vibeui-block="slider-005"][data-level="0"] [data-part="wave"]{opacity:0}
[data-vibeui-block="slider-005"][data-level="1"] [data-part="wave"] + [data-part="wave"]{opacity:0}
[data-vibeui-block="slider-005"][data-level="0"] [data-part="icon"]{color:var(--vibeui-slider-005-muted)}
[data-vibeui-block="slider-005"] [data-part="rail"]{flex:1 1 auto;min-width:0;display:flex;align-items:center}
[data-vibeui-block="slider-005"] input{
appearance:none;width:100%;height:1.25rem;margin:0;background:none;cursor:pointer;
}
[data-vibeui-block="slider-005"] input::-webkit-slider-runnable-track{
height:0.25rem;border-radius:9999px;
background:linear-gradient(to right,var(--vibeui-slider-005-accent) var(--vibeui-slider-005-fill),var(--vibeui-slider-005-track) var(--vibeui-slider-005-fill));
}
[data-vibeui-block="slider-005"] input::-moz-range-track{
height:0.25rem;border-radius:9999px;
background:linear-gradient(to right,var(--vibeui-slider-005-accent) var(--vibeui-slider-005-fill),var(--vibeui-slider-005-track) var(--vibeui-slider-005-fill));
}
[data-vibeui-block="slider-005"] input::-webkit-slider-thumb{
appearance:none;margin-top:-0.375rem;
width:1rem;height:1rem;border-radius:9999px;
background:var(--vibeui-slider-005-accent);border:3px solid var(--vibeui-slider-005-bg);
box-shadow:0 1px 4px oklch(0.2 0.02 265 / 30%);
}
[data-vibeui-block="slider-005"] input::-moz-range-thumb{
width:1rem;height:1rem;border-radius:9999px;box-sizing:border-box;
background:var(--vibeui-slider-005-accent);border:3px solid var(--vibeui-slider-005-bg);
}
[data-vibeui-block="slider-005"] input:focus-visible{outline:2px solid var(--vibeui-slider-005-accent);outline-offset:4px;border-radius:0.5rem}
[data-vibeui-block="slider-005"] [data-part="value"]{
flex:none;min-width:2.25rem;text-align:right;
font-size:0.8125rem;font-weight:600;font-variant-numeric:tabular-nums;
color:var(--vibeui-slider-005-muted);
}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="slider-005"] *{animation:none!important;transition:none!important}}
`

/**
 * Ползунок громкости: иконка динамика реагирует на уровень, кнопка глушит звук.
 * Один файл, ноль зависимостей, собственная палитра.
 */
export function Slider005({
  label = "Громкость",
  defaultValue = 60,
  muteText = "Выключить звук",
  accent,
  className,
  style,
  ...props
}: Slider005Props) {
  const id = useId()
  const [value, setValue] = useState(defaultValue)
  const [previous, setPrevious] = useState(defaultValue || 50)
  const level = value === 0 ? 0 : value < 50 ? 1 : 2

  const palette = {
    "--vibeui-slider-005-fill": `${value}%`,
    ...(accent ? { "--vibeui-slider-005-accent": accent } : null),
    ...style,
  } as CSSProperties

  return (
    <>
      <style href="vibeui-slider-005" precedence="medium">
        {STYLES}
      </style>
      <div
        {...props}
        data-vibeui-block="slider-005"
        data-level={level}
        className={className}
        style={palette}
      >
        <button
          type="button"
          data-part="mute"
          aria-pressed={value === 0}
          aria-label={muteText}
          onClick={() => {
            if (value === 0) {
              setValue(previous)
              return
            }
            setPrevious(value)
            setValue(0)
          }}
        >
          <span data-part="icon" aria-hidden="true">
            <span data-part="speaker" />
            <span data-part="wave" />
            <span data-part="wave" />
          </span>
        </button>
        <span data-part="rail">
          <input
            id={id}
            type="range"
            min={0}
            max={100}
            step={1}
            value={value}
            aria-label={label}
            onChange={(event) => setValue(Number(event.target.value))}
          />
        </span>
        <span data-part="value">{value}%</span>
      </div>
    </>
  )
}