fifty-shades-of-bully/src/css/video.css
NekoVari 4d22f2ca0b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
make video can change position and js handle select character
2025-05-03 00:18:12 +07:00

42 lines
No EOL
942 B
CSS

/* .video-container {
height: 100vh;
overflow: hidden;
} */
.video-container {
position: fixed;
top: 50%;
left: 0;
transform: translateY(-50%);
width: 100%;
height: 100vh;
overflow: hidden;
}
@media only screen and (max-device-width: 600px) {
.video-container.middle {
width: 200%;
height: 150vh;
left: 0%;
}
.video-container.left {
width: 300%;
left: 0%;
}
.video-container.right {
width: 200%;
left: -100%;
}
}
.video-container video {
width: 100%;
height: 100%;
object-fit: cover;
pointer-events: none;
-webkit-media-controls: none;
-webkit-media-controls-play-button: none;
-webkit-media-controls-timeline: none;
-webkit-media-controls-current-time-display: none;
-webkit-media-controls-time-remaining-display: none;
-webkit-media-controls-toggle-closed-captions-button: none;
}