360° Viewer Component
A responsive 360° Viewer Component with skeuomorphic design, triadic color scheme, and dark theme support. Designed for dashboard data visualization and control panels.
HTML Code
<div class="flex flex-col items-center justify-center dark:bg-gray-800 bg-gray-200 min-h-screen p-5">
<h2 class="text-3xl font-bold mb-5 text-gray-900 dark:text-white">360° Viewer</h2>
<div class="relative w-full max-w-xl">
<div class="overflow-hidden rounded-lg shadow-lg border border-gray-300 dark:border-gray-700">
<img src="https://picsum.photos/600/400" alt="360° View" class="w-full h-auto transition-transform duration-500 ease-in-out transform hover:scale-105" />
<div class="absolute inset-0 flex items-center justify-center">
<button class="bg-blue-500 hover:bg-blue-700 dark:bg-blue-700 dark:hover:bg-blue-500 text-white font-bold py-2 px-4 rounded-full transition-all duration-200">Rotate Left</button>
<button class="bg-green-500 hover:bg-green-700 dark:bg-green-700 dark:hover:bg-green-500 text-white font-bold py-2 px-4 rounded-full transition-all duration-200 ml-4">Rotate Right</button>
</div>
</div>
</div>
<div class="flex justify-between w-full max-w-xl mt-4">
<div class="flex flex-col items-center">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-16 h-16 rounded-full border-2 border-gray-300 dark:border-gray-700 mb-2" />
<p class="text-xl font-semibold text-gray-900 dark:text-white">User Name</p>
</div>
<div class="flex flex-col items-center">
<img src="https://randomuser.me/api/portraits/women/1.jpg" alt="User Avatar" class="w-16 h-16 rounded-full border-2 border-gray-300 dark:border-gray-700 mb-2" />
<p class="text-xl font-semibold text-gray-900 dark:text-white">User Name</p>
</div>
<div class="flex flex-col items-center">
<img src="https://randomuser.me/api/portraits/men/2.jpg" alt="User Avatar" class="w-16 h-16 rounded-full border-2 border-gray-300 dark:border-gray-700 mb-2" />
<p class="text-xl font-semibold text-gray-900 dark:text-white">User Name</p>
</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 360-degree viewer component with Glassmorphism design, monochromatic color scheme, and moderate complexity. It's designed for blog/content purposes, is responsive, and supports dark mode using Tailwind CSS. No JavaScript is included, only HTML with Tailwind classes. Uses picsum.photos for images.
360° Viewer Component
A responsive 360 degree viewer component designed for e-commerce, with support for dark mode. The styling is retro/vintage with a pastel color scheme. Uses only HTML and Tailwind CSS.