Video Player Component
A minimalist video player component designed for social media interfaces, featuring a responsive layout with dark theme support.
HTML Code
<div class="max-w-md mx-auto bg-gray-800 dark:bg-gray-900 rounded-lg shadow-lg overflow-hidden">
<video class="w-full h-64" controls>
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="p-4">
<div class="flex items-center">
<img class="w-10 h-10 rounded-full" src="https://randomuser.me/api/portraits/men/10.jpg" alt="User Avatar">
<div class="ml-3">
<h2 class="text-white text-lg font-semibold">User Name</h2>
<p class="text-gray-400 dark:text-gray-300 text-sm">2 hours ago</p>
</div>
</div>
<div class="mt-2">
<p class="text-gray-200 dark:text-gray-300 text-sm">Enjoy this video of a beautiful landscape!</p>
</div>
<div class="mt-4 flex justify-between text-gray-400 dark:text-gray-500">
<button class="hover:text-white focus:outline-none">Like</button>
<button class="hover:text-white focus:outline-none">Share</button>
<button class="hover:text-white focus:outline-none">Comment</button>
</div>
</div>
</div>
Related Components
Material_Design_Video_Player_Component
A responsive video player component with Material Design aesthetics, warm neutral color scheme, dark mode support, suitable for booking/reservation systems. Features a video thumbnail, play button, title, description, and a 'Book Now' call to action.
Video Player Component
A simple video player component designed using Material Design principles with a responsive layout and dark theme support.
3D Monochromatic Video Player
A responsive video player component with 3D design elements and monochromatic color scheme, suitable for a dashboard.