티스토리 블로그 불펌방지 , 드래그 방지 하는법!!
1. 관리 -> 플러그인 설정 -> 스팸, 불펌방지 -> 마우스 오른쪽 클릭 방지 활성화
오른쪽 클릭 으로 복사 하는것을 방지 하기 위해 오른쪽 클릭 방지 를 활성화 해주구요!,
HTML /CSS 편집 으로 가셔서
<head> 태그가 끝나는 </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 oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
<!-- 마우스 드래그 로 인한 복사 방지 끝 -->
적어주시면 됩니다! 간단하죠,
직접 타이핑 하기 힘드니 파일을 첨부해 드릴게요.
'Tistory > Tistory Tip' 카테고리의 다른 글
티스토리 블로그 이름 및 주소 변경 법 및 주소 변경하면 안되는 이유 (0) | 2017.01.05 |
---|---|
네이버 웹마스터 도구 rss / 사이트맵 등록 (0) | 2016.12.22 |
티스토리 블로그 검색 노출 (네이버) (0) | 2016.12.22 |
티스토리 공감버튼 없애기 (0) | 2016.12.21 |
티스토리 square 스킨 폰트 변경 (1) | 2016.12.21 |