Simple 360 Viewer (Glassmorphism Grayscale)
A simple, responsive 360 viewer component with glassmorphism design in grayscale, suitable for e-commerce. Supports dark mode.
HTML Code
```html
<div class="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900 p-4">
<div class="relative w-full max-w-sm bg-white dark:bg-gray-800 rounded-lg shadow-xl overflow-hidden backdrop-filter backdrop-blur-lg bg-opacity-20 dark:bg-opacity-20">
<!-- 360 Viewer Area (Placeholder) -->
<div class="relative w-full h-64 bg-gray-300 dark:bg-gray-700 flex items-center justify-center">
<span class="text-gray-600 dark:text-gray-400 text-sm">360° Viewer Placeholder</span>
<!-- In a real implementation, a JavaScript library or iframe would go here -->
</div>
<!-- Product Info -->
<div class="p-4">
<h3 class="text-lg font-semibold text-gray-800 dark:text-white mb-2">Product Name</h3>
<p class="text-gray-600 dark:text-gray-300 text-sm mb-4">Brief product description goes here.</p>
<div class="flex justify-between items-center">
<span class="text-xl font-bold text-gray-900 dark:text-white">$99.99</span>
<button class="px-4 py-2 bg-gray-700 text-white text-xs font-semibold rounded hover:bg-gray-600 dark:bg-gray-600 dark:hover:bg-gray-500">Add to Cart</button>
</div>
</div>
</div>
</div>
```
Related Components
PastelBrutalist360AssetViewer
A simple, responsive 360° Asset Viewer component with a Brutalist design style and a pastel pink color scheme. Tailored for dashboards, it features a static image placeholder (simulating a 360° view), non-functional control buttons, and information display. Built with Tailwind CSS, it supports dark mode and showcases raw, bold aesthetics with thick borders and hard offset shadows.
360° Viewer Component
A responsive 360° viewer component designed in a 3D style with dark theme support, using placeholder images from picsum.photos.
360° Viewer Component
A 360° Viewer component using Glassmorphism design style with responsive effects and dark theme support.