Initial commit: modern React video player library

Add all source files for a feature-rich, reusable video player built with React, TypeScript, and Vite. Includes core components, context, hooks, utilities, styles, demo app, and configuration files.
This commit is contained in:
hibna
2025-10-29 07:49:06 +03:00
parent d68df70124
commit b57b24d051
47 changed files with 4414 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
.video-container {
position: relative;
width: 100%;
height: 100%;
z-index: var(--player-z-video);
}
.video-element {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
/* Hide native controls */
.video-element::-webkit-media-controls {
display: none !important;
}
.video-element::-webkit-media-controls-enclosure {
display: none !important;
}
.video-element::-webkit-media-controls-panel {
display: none !important;
}