// iframe,embed ÀÇ ¸µÅ©
var $allVideos = $("iframe[src^='http://player.vimeo.com'], iframe[src^='http://www.youtube.com'], iframe[src^='http://www.youtube-nocookie.com'], iframe[src^='http://serviceapi.nmv.naver.com'], embed[src^='http://www.youtube.com'], embed[src^='http://serviceapi.nmv.naver.com'], iframe[src^='https://www.youtube.com'], iframe[src^='https://www.youtube-nocookie.com'], iframe[src^='http://flvs.daum.net'], iframe[src^='http://play.pullbbang.com'], iframe[src^='http://www.gamespot.com'], iframe[src^='http://sbsplayer.sbs.co.kr/'], iframe[src^='http://www.microsoft.com'], iframe[src^='http://dotsub.com'], iframe[src^='http://www.travelro.co.kr'], embed[src^='http://v.egloos.com/v.sk/'], embed[src^='http://api.v.daum.net/'], embed[src^='http://dory.mncast.com/'], embed[src^='http://play.mgoon.com/Video/'], embed[src^='http://doc.mgoon.com/'], embed[src^='http://flvr.pandora.tv/flv2pan/'], embed[src^='http://imgcdn.pandora.tv/'], embed[src^='http://live.afreeca.com'], embed[src^='http://afbbs.afreeca.com'], embed[src^='http://w.blogdoc.nate.com'], embed[src^='http://blogdoc.nate.com'], embed[src^='http://www.musicshake.com/'], embed[src^='http://static.plaync.co.kr'], iframe[src^='http://www.travelro.co.kr'], iframe[src^='http://dotsub.com']"),
$fluidEl = $("body");
$allVideos.each(function()
{
$(this)
.data('aspectRatio', this.height / this.width)
// ±âÁ¸ ³ô,³Ð »èÁ¦
.removeAttr('height')
.removeAttr('width');
});
$(window).resize(function()
{
var newWidth = $fluidEl.width();
$allVideos.each(function()
{
var $el = $(this);
$el
.width('100%')
.height('260');
});
}).resize();
¸ð¹ÙÀÏ ÆäÀÌÁö¿¡¼ »ç¿ëÇϸé ÁÁÀ»°Í °°°í.. width ¿Í height ´Â »ç¿ëÀÚ°¡ ¿øÇϴµ¥·Î Á¶Á¤Çؼ »ç¿ëÇÏ¸é µÈ´Ù. |