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
360_Viewer_Component
A complex 360° product viewer component designed for entertainment/media platforms, featuring heavy use of color gradients and smooth transitions within a warm neutral color scheme. It is fully responsive and supports dark mode.
360° Viewer Component
A simple responsive 360° viewer component designed with Glassmorphism style and a pastel color scheme for blog content consumption, including dark mode support.
360° Viewer Component
A 360° Viewer Component designed with a skeuomorphic style, utilizing a grayscale color scheme. It features a medium complexity interface suitable for social media applications, supporting both light and dark themes.