<script language="javascript" type="text/javascript"> ///////////////////////// Snowsage Player Control Script 시작! ///////////////////// // Snowsage Player Ver 1.16 (2006.12.14) // Made By 하얀현자 (http://snowsage.tistory.com) /////////////////////////////////////////////////////////////////////// // 만일, 자신의 블로그로 접속되지 않을 경우, http://자기주소/owner/entry 로 접속, // 스킨 편집으로 와서 isUsed 값을 0 으로 변경하고, 자기 블로그로 접속 된다면 // http://snowsage.tistory.com 에 해당 사항을 알려주시기 바랍니다. ////////////////////////////////////////////////////////////////////// var isUsed = 0; // SnowsagePlayer 적용여부 (적용: 1 / 미적용: 0) var isCenter = 0; // 스킨이 가운데 정렬이면 1 아니면 0 var test = 1; // 플레이어 위치 조정시에만 1, 평상시엔 0 var leftPixel = 718; // Controller 왼쪽(가운데)으로부터 떨어진 pixel var topPixel = 20; // Controller 상단으로부터 떨어진 pixel ////////////////////////////////////////////////////////////////////// var widthPixel = 240; // Controller 가로 크기 (필요시에만 변경) var heightPixel = 132; // Controller 세로 크기 (필요시에만 변경) ////////////////////////////////////////////////////////////////////// function bgmFrameLoad(){ if(top.window.location.href.indexOf("frame.html") == -1){ var frameURL = "./images/frame.html"; top.window.location.href = frameURL + "?" + window.location.href; } else if(top.window.location.href.indexOf("./images") == -1) top.bgm.location.href = "./images/player.html"; }
var isToolBarResized = 0; function toolBarWidthResize(){ var tistoryTB = document.getElementById("tistorytoolbarid"); if(tistoryTB != null && !isToolBarResized) { isToolBarResized = 1; tistoryTB.style.pixelWidth -= 18; clearInterval(toolBarResizeInterval); } return true; }