Audio Player Component
A responsive audio player component designed with Glassmorphism style, featuring a frosted glass-like look and support for dark mode.
HTML Code
<div class="flex justify-center items-center min-h-screen bg-gray-200 dark:bg-gray-800">
<div class="bg-white dark:bg-gray-900 rounded-lg shadow-lg p-6 backdrop-blur-lg bg-opacity-30 border border-gray-300 dark:border-gray-600">
<img src="https://picsum.photos/200/100" alt="Album Art" class="rounded-lg mb-4">
<div class="flex flex-col items-center">
<h2 class="text-lg font-semibold text-gray-800 dark:text-white">Song Title</h2>
<p class="text-sm text-gray-600 dark:text-gray-400">Artist Name</p>
</div>
<div class="w-full my-4">
<input type="range" class="w-full h-1 bg-gray-300 rounded-lg appearance-none cursor-pointer dark:bg-gray-600" min="0" max="100" value="50">
</div>
<div class="flex justify-between">
<button class="bg-blue-500 text-white font-semibold py-2 px-4 rounded-lg focus:outline-none">Play</button>
<button class="bg-red-500 text-white font-semibold py-2 px-4 rounded-lg focus:outline-none">Stop</button>
</div>
</div>
</div>
Related Components
Retro Audio Player
Component Implementing an Audio Player with Retro/Vintage Design, Responsive effects and Dark Theme support.
Neumorphism Audio Player
A Neumorphism-styled audio player component with play, pause, skip, and volume controls, designed for business websites. Features a progress bar, song title, artist, and album art. Includes responsive design and dark mode support using Tailwind CSS.
Audio Player Component
A simple, responsive audio player component with a watercolor/artistic design style, warm neutral color scheme, and full dark mode support, suitable for consulting or service-based websites.