본문 바로가기
IT

티스토리 블로그 유튜브 비율 변경

by cktv 2023. 11. 20.

티스토리 블로그 유튜브 가로 x 세로 비율을 유지한다.

티스토리 블로그 유튜브 비율 변경

경로 :블로그관리홈 > 꾸미기 > 스킨 편집 > html 편집 > HTML

① </head> 앞에 첨부한 script를 입력한다.

<script type="text/javascript">
$(window).resize(function(){resizeYoutube();});
$(function(){resizeYoutube();});
function resizeYoutube(){ $("iframe").each(function(){ if( /^https?:\/\/www.youtube.com\/embed\//g.test($(this).attr("src")) ){ $(this).css("width","100%"); $(this).css("height",Math.ceil( parseInt($(this).css("width")) * 480 / 854 ) + "px");} }); }
</script>

② 첨부파일

유튜브.txt
0.00MB

 

USB 메모리 - 액센 크롬 3.2 Gen1 64G

USB 메모리를 구입하다... 적당한 가격, 그닥 크지 않은 용량, 막(?) 쓸만한, USB 3.0을 지원하는 USB 메모리가 필요했다. 약 10배의 속도가 차이 나는 USB 3.0은 포기할 수 없다. USB ver. Bandwidth DATA Transfer

cktv.tistory.com