드래그 방지 코드 스크립트
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
스킨 편집에서 HTML을 클릭하고, </Head> 위에 드래그 방지 코드 스크립트를 붙여넣으십시오.
우클릭 방지 코드 스크립트
<script type="text/javascript">
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
<body id="tt-body-page" class=""> 밑에 우클릭 방지 코드 스크립트를 붙여넣으십시오.
앤티엘리어싱 - FXAA 켰을 때와 껐을 때의 차이 (0) | 2023.07.04 |
---|---|
Steam(스팀) [가이드] 결제 없이 상점 국가 변경하는 방법 안내 (0) | 2023.07.04 |
티스토리 블로그 본문 폰트 크기 변경하는 방법 안내 (0) | 2023.07.03 |
컴퍼니 오브 히어로즈 2 제재 종류 (0) | 2023.07.01 |
컴퍼니 오브 히어로즈 2 불량 유저 신고 방법 안내 (0) | 2023.07.01 |