게시판 사이즈에 따라서 유투브 영상 사이즈 자동조절 스크립트
$(document).ready(function(){
$("#bo_v_con").find("iframe").css("width","100%");
var height = $("#bo_v_con").find("iframe").width()*9/16;
$("#bo_v_con").find("iframe").css("height",height);
});
$(window).on("resize", function() {
$("#bo_v_con").find("iframe").css("width","100%");
var height = $("#bo_v_con").find("iframe").width()*9/16;
$("#bo_v_con").find("iframe").css("height",height);
});
위와 같이 ./js/viewimageresize.js 에다가
마지막 줄 뒤에 추가해주면
게시판 사이즈 조절시 자동으로 16:9 비율로 유투브 영상 크기가 조절됩니다.
나름 유용할거 같아서 공유드립니다.
|
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기
댓글 4개