카테고리 없음
유튜브 youtube PC모바일 자동 리사이즈
interdigm
2017. 7. 5. 17:58
유튜브 youtube PC모바일 자동 리사이즈
$('#you iframe').each(function() {
var newDiv = $('<div/>').addClass('youtube');
$(this).before(newDiv);
var next = $(this).next();
newDiv.append(this).append(next);
$(this).css({'width':'100%','height':'100%','position':'absolute','left':'0px'});
});