소스 검색

Unrestrain non-square video

master
Roderic Day 5 년 전
부모
커밋
c0f2923e51
1개의 변경된 파일9개의 추가작업 그리고 2개의 파일을 삭제
  1. +9
    -2
      pico.css

+ 9
- 2
pico.css 파일 보기

@@ -74,11 +74,18 @@ body {
}
.video-container video {
background-color: lightsteelblue;
object-fit: cover;
height: 100%;
width: 100%;
}
.video-container.square video {
object-fit: cover;
.video-container:not(.square) {
width: unset !important;
overflow: scroll;
}
.video-container:not(.square) video {
object-fit: unset;
height: unset;
width: unset;
}
.video-container.mirror video {
transform: scaleX(-1);

Loading…
취소
저장