Glassmorphism Timeline Component
A responsive Timeline Component featuring glassmorphism style with a triadic color scheme. It includes frosted glass-like translucent elements with blur effects, suitable for blog and content consumption, with dark mode support.
HTML Code
<div class="bg-gray-50 dark:bg-gray-900 flex justify-center py-10">
<div class="bg-white dark:bg-gray-800 rounded-lg shadow-lg p-6 max-w-xl w-full backdrop-blur-md bg-opacity-30 border border-gray-200 dark:border-gray-700">
<h2 class="text-2xl font-bold text-center text-gray-800 dark:text-gray-100 mb-6">Timeline</h2>
<div class="relative mb-4">
<div class="flex justify-between items-center mb-4">
<div class="w-1/2 flex items-center">
<div class="h-8 w-8 rounded-full overflow-hidden shadow-lg">
<img src="https://picsum.photos/40/40" alt="" class="object-cover">
</div>
<div class="ml-4">
<p class="text-sm text-gray-600 dark:text-gray-400">Event 1</p>
<p class="text-xs text-gray-500 dark:text-gray-500">Date 1</p>
</div>
</div>
<div class="h-1 w-1 bg-gray-300 dark:bg-gray-700"></div>
<div class="w-1/2 text-right">
<p class="text-sm text-gray-600 dark:text-gray-400">Description of Event 1.</p>
</div>
</div>
</div>
<div class="relative mb-4">
<div class="flex justify-between items-center mb-4">
<div class="w-1/2 flex items-center">
<div class="h-8 w-8 rounded-full overflow-hidden shadow-lg">
<img src="https://picsum.photos/40/40" alt="" class="object-cover">
</div>
<div class="ml-4">
<p class="text-sm text-gray-600 dark:text-gray-400">Event 2</p>
<p class="text-xs text-gray-500 dark:text-gray-500">Date 2</p>
</div>
</div>
<div class="h-1 w-1 bg-gray-300 dark:bg-gray-700"></div>
<div class="w-1/2 text-right">
<p class="text-sm text-gray-600 dark:text-gray-400">Description of Event 2.</p>
</div>
</div>
</div>
<div class="relative mb-4">
<div class="flex justify-between items-center mb-4">
<div class="w-1/2 flex items-center">
<div class="h-8 w-8 rounded-full overflow-hidden shadow-lg">
<img src="https://picsum.photos/40/40" alt="" class="object-cover">
</div>
<div class="ml-4">
<p class="text-sm text-gray-600 dark:text-gray-400">Event 3</p>
<p class="text-xs text-gray-500 dark:text-gray-500">Date 3</p>
</div>
</div>
<div class="h-1 w-1 bg-gray-300 dark:bg-gray-700"></div>
<div class="w-1/2 text-right">
<p class="text-sm text-gray-600 dark:text-gray-400">Description of Event 3.</p>
</div>
</div>
</div>
</div>
</div>
Related Components
Timeline Component
A simple responsive timeline component designed in a skeuomorphic style with a grayscale color scheme, suitable for business/corporate websites. It features a dark theme support and uses Tailwind CSS for styling.
Timeline Component
A responsive timeline component with 3D design elements, earth tone color scheme, and dark mode support. Suitable for portfolios.
Timeline Component
A responsive timeline component styled in a minimalist/flat design for e-commerce, supporting dark mode with an analogous color scheme and multiple interactive elements.