Social Share Buttons Component 51
A responsive social share buttons component designed with skeuomorphic design principles, featuring buttons that mimic real-world objects and support for dark theme. The component is styled using Tailwind CSS and includes placeholder images from picsum.photos and avatars from randomuser.me.
HTML Code
<div class="flex justify-center items-center p-5 bg-gray-100 dark:bg-gray-800 rounded-lg shadow-lg">
<div class="flex space-x-4">
<div class="flex flex-col items-center">
<img src="https://picsum.photos/40/40" alt="Share on Facebook" class="rounded-full shadow-md mb-2">
<a href="#" class="bg-blue-600 dark:bg-blue-800 text-white p-2 rounded-full shadow-lg transform hover:scale-105 transition duration-150 ease-in-out">
Facebook
</a>
</div>
<div class="flex flex-col items-center">
<img src="https://picsum.photos/40/40" alt="Share on Twitter" class="rounded-full shadow-md mb-2">
<a href="#" class="bg-blue-400 dark:bg-blue-600 text-white p-2 rounded-full shadow-lg transform hover:scale-105 transition duration-150 ease-in-out">
Twitter
</a>
</div>
<div class="flex flex-col items-center">
<img src="https://picsum.photos/40/40" alt="Share on LinkedIn" class="rounded-full shadow-md mb-2">
<a href="#" class="bg-blue-700 dark:bg-blue-900 text-white p-2 rounded-full shadow-lg transform hover:scale-105 transition duration-150 ease-in-out">
LinkedIn
</a>
</div>
<div class="flex flex-col items-center">
<img src="https://picsum.photos/40/40" alt="Share on Instagram" class="rounded-full shadow-md mb-2">
<a href="#" class="bg-pink-500 dark:bg-pink-700 text-white p-2 rounded-full shadow-lg transform hover:scale-105 transition duration-150 ease-in-out">
Instagram
</a>
</div>
</div>
</div>
Related Components
Social Share Buttons
Social Share Buttons featuring responsive design, dark theme support, and a 3D aesthetic. No JavaScript required.
Social Share Buttons Component
A responsive social share buttons component styled with retro/vintage aesthetics from the 80s/90s, featuring dark theme support using Tailwind CSS and placeholder images.
Social Share Buttons Component
A responsive social share buttons component styled with glassmorphism effects, supporting both light and dark themes.