Like/Reaction Buttons Component
A responsive Like/Reaction buttons component designed with microinteractions in mind, using a monochromatic color scheme, suitable for blog and content consumption, with support for dark themes.
HTML Code
<div class="flex flex-col items-center p-4 space-y-4 bg-gray-200 dark:bg-gray-800 rounded-md shadow-md">
<h2 class="text-lg font-semibold text-gray-800 dark:text-gray-200">Engage with this post!</h2>
<div class="flex space-x-4">
<button class="relative group p-2 rounded-full text-blue-600 dark:text-blue-300 hover:bg-blue-100 dark:hover:bg-blue-600 transition duration-300 ease-in-out">
<img src="https://picsum.photos/35/35" alt="Like" class="rounded-full">
<span class="absolute bottom-full left-1/2 transform -translate-x-1/2 -translate-y-2 opacity-0 group-hover:opacity-100 transition-opacity duration-300">Like</span>
</button>
<button class="relative group p-2 rounded-full text-green-600 dark:text-green-300 hover:bg-green-100 dark:hover:bg-green-600 transition duration-300 ease-in-out">
<img src="https://picsum.photos/35/35" alt="Love" class="rounded-full">
<span class="absolute bottom-full left-1/2 transform -translate-x-1/2 -translate-y-2 opacity-0 group-hover:opacity-100 transition-opacity duration-300">Love</span>
</button>
<button class="relative group p-2 rounded-full text-red-600 dark:text-red-300 hover:bg-red-100 dark:hover:bg-red-600 transition duration-300 ease-in-out">
<img src="https://picsum.photos/35/35" alt="Angry" class="rounded-full">
<span class="absolute bottom-full left-1/2 transform -translate-x-1/2 -translate-y-2 opacity-0 group-hover:opacity-100 transition-opacity duration-300">Angry</span>
</button>
</div>
<p class="text-sm text-gray-600 dark:text-gray-400">Your reactions help us improve!</p>
</div>
Related Components
Like/Reaction Buttons Component
A Like/Reaction Buttons component with Glassmorphism design style, featuring frosted glass effects, responsive design, and dark theme support using Tailwind CSS.
Skeuomorphic Reaction Buttons
A set of like and reaction buttons with a Skeuomorphic design style, supporting responsive layouts and dark mode. The buttons are implemented purely with HTML and Tailwind CSS, with no JavaScript. Dark mode is handled via CSS classes. Placeholder images are used for avatars.
Like/Reaction Buttons
Like/Reaction Buttons Component with Microinteractions, Complementary color scheme, Simple complexity, for Social Media purpose.