rwd-video()
반응형 비디오 믹스인
용도
사용법
.usage {
@include rwd-video();
}.usage {
max-width: 100%;
height: auto;
}콘테이너 높이에 반응하는 비디오 설정 (원래 크기보다 커지지 않도록 제한)
로직
참고
Last updated
반응형 비디오 믹스인
.usage {
@include rwd-video();
}.usage {
max-width: 100%;
height: auto;
}Last updated
.usage {
@include rwd-video(true, height);
}.usage {
max-height: 100%;
width: auto;
}@mixin rwd-video($limit-origin-size: true, $ratio-prop: width) {
@include rwd-img($limit-origin-size, $ratio-prop);
}