웹마스터 팁

// Find all YouTube videos
var $allVideos = $("iframe[src^='http://player.vimeo.com'], iframe[src^='http://www.youtube.com'], embed[src^='http://www.youtube.com']"),

    // The element that is fluid width
    $fluidEl = $("body");

// Figure out and save aspect ratio for each video
$allVideos.each(function() {

  $(this)
    .data('aspectRatio', this.height / this.width)

    // and remove the hard coded width/height
    .removeAttr('height')
    .removeAttr('width');

});

// When the window is resized
$(window).resize(function() {

  var newWidth = $fluidEl.width();

  // Resize all videos according to their own aspect ratio
  $allVideos.each(function() {

    var $el = $(this);
    $el
      .width('300')
      .height('260');

  });
// Kick off one resize to fix all videos on page load
}).resize();

이걸 모바일 게시판 스킨 js파일에 넣어주시면 됩니다

제목 글쓴이 날짜
플래시메뉴 사입방법 [4] urhow1 2007.08.29
분류가 있는 게시판에서 전체분류모드로 게시물 클릭시 딜레이 현상 [2] Sx3 2007.08.30
페이지수정 안되시는 분들께 드리는 팁 [2] 다케루 2007.08.30
구글광고넣기....(재밌는경험담 본문에 광고 넣으시려는분 꼭 읽어 보세요...) [2] kangho 2007.08.30
회원 단축 메뉴 보여주기 file Simulz 2007.08.30
(최근글목록) 분류명 표시하기 & 이미지 [7] Simulz 2007.08.31
서버이전하고 마이그레이션하고 경험담 [3] 팔공산 2007.08.31
(최근글목록) 게시판 이름 출력하기 #2 [12] file Simulz 2007.08.31
관리자 아이디 사용제한 체크하는 어이없는 실수 & 해결 [5] refree 2007.09.01
(0.1.2) 이모티콘 삽입 후 그림 안보일 때 [5] Simulz 2007.09.02
랜덤 배경 이미지 [7] Simulz 2007.09.04
(설문조사) 회원만 설문 조사 하도록 [8] Simulz 2007.09.04
회원에게는 구글 애드센스 보이지 않게 하기 [2] 스컬리지금어디야 2007.09.05
글이 중간에 짤릴 경우.. 송암 2007.09.06
확장변수 이용해서 2차 3차 분류 항목 만들기 [3] VagaBond 2007.09.08
(게시판) 목록에 확장 변수를 출력하기 [18] file Simulz 2007.09.08
메인 페이지 링크 www. 주소 표시, 로그인 링크 문제.... [5] 마덴나 2007.09.08
(파일 첨부) 파일명 안보일 때 ... 없애기 [9] Simulz 2007.09.10
랭킹에 순위 넣기! ㅋ~ (꼼수;) file 다케루 2007.09.11
파일 업로드시에 403에러 발생시 해결방법. [12] WhiteAT 2007.09.12