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.
HTML Code
<div class="flex flex-col items-center justify-center p-6 bg-gray-100 dark:bg-gray-800 rounded-lg shadow-lg">
<h2 class="text-xl font-semibold text-gray-800 dark:text-gray-200">360° Viewer</h2>
<div class="mt-4 w-full max-w-md h-64 border border-gray-300 dark:border-gray-600 rounded-lg overflow-hidden shadow-inner">
<img src="https://picsum.photos/600/400?random=1" alt="360° View" class="w-full h-full object-cover transition-transform hover:scale-105 duration-300" />
</div>
<div class="mt-4 flex items-center">
<div class="flex-shrink-0">
<img class="w-10 h-10 rounded-full border border-gray-300 dark:border-gray-600" src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" />
</div>
<div class="ml-3">
<p class="text-sm font-medium text-gray-700 dark:text-gray-300">John Doe</p>
<p class="text-sm text-gray-500 dark:text-gray-400">Posted 1 hour ago</p>
</div>
</div>
<div class="mt-4">
<button class="px-4 py-2 text-white bg-gray-800 rounded hover:bg-gray-700 dark:bg-gray-600 dark:hover:bg-gray-500">Interact</button>
</div>
</div>
Related Components
360 Viewer Component
A 360° Viewer Component with dark mode support and responsive design, built with Tailwind CSS. Requires no JavaScript, using only CSS for styling and responsiveness.
360° Viewer Component
A responsive 360° viewer component designed for dashboards with a 3D design style and support for dark mode.
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.