반응형으로 처리되는 비디오는 어떻게 처리할까요?
비메오나 유튜브 영상을 iframe을 붙일 때 소스를 가져오면 기본적으로 사이즈가 지정되어 있습니다.
부트스트랩 홈페이지에 보면 아래와 같이 제시해 주고 있네요....
저의 사이트에 있는 강좌 동영상 소스도 아래와 같이 되어 있습니다.
<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="..."></iframe>
</div>
<!-- 4:3 aspect ratio -->
<div class="embed-responsive embed-responsive-4by3">
<iframe class="embed-responsive-item" src="..."></iframe>
</div>
등록된 댓글이 없습니다.