Neumorphic Tooltip Component
A sophisticated Neumorphism-styled tooltip component suitable for business websites, employing vibrant colors and designed for dark mode support.
HTML Code
<div class="relative group flex items-center">
<!-- Tooltip Trigger -->
<button class="bg-purple-600 text-white rounded-full p-2 shadow-lg focus:outline-none">
Hover me
</button>
<!-- Tooltip -->
<div class="absolute bottom-full left-1/2 transform -translate-x-1/2 mb-2 w-48 bg-white dark:bg-gray-800 text-gray-800 dark:text-gray-200 text-sm rounded-lg shadow-lg opacity-0 group-hover:opacity-100 transition-opacity duration-300 ease-in-out z-10">
<div class="p-3">
<div class="flex items-center space-x-3">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-8 h-8 rounded-full">
<span class="font-semibold">John Doe</span>
</div>
<p class="mt-2">This is a tooltip description to provide additional information.</p>
</div>
<div class="rounded-lg bg-purple-600 p-2 text-white text-center font-bold transition-transform transform hover:scale-105">Learn More</div>
</div>
</div>
Related Components
Tooltip Component
A responsive tooltip component with vibrant colors, microinteractions, and dark mode support, suitable for industrial and manufacturing applications. Displays information on hover/focus.
Tooltip Component
A simple responsive Tooltip component designed for blog content consumption, featuring a 3D design with a grayscale color scheme and dark mode support using Tailwind CSS.