skin.html
에서 아래 코드를 찾아서
var h = /\/\/www.youtube.com\/embed\/(.*?)"/g.exec(html)[1];
h = 'http://img.youtube.com/vi/'+h.split("?")[0]+'/maxresdefault.jpg';
var tmpImg = new Image();
tmpImg.src = h;
$(tmpImg).one('load', function(){
if (tmpImg.width == 120)
h = h.replace("maxresdefault", "hqdefault");
i.attr("src", "http://i1.daumcdn.net/thumb/R400x0/?fname="+h);
});
다음과 같이 변경
var h = /
다음과 같은 형태로 보인다
'Video > Youtube' 카테고리의 다른 글
youtube 2개 (0) | 2017.07.12 |
---|---|
youtube 960*540 (0) | 2017.07.10 |