반응형
- 구글 블로그를 운영하면서 마우스 우클릭 또는 드래그를 방지하는 기능이 필요한 경우가 생깁니다. 이 경우 각각 코드를 삽입하여 두 기능을 활성화 시킬 수 있습니다.
- 마우스 우클릭 방지 (Disable Right Click) : 대쉬보드 (Dashboard) - 템플릿 (Template) - HTML편집으로 이동하여 찾기 기능으로 (Ctrl+F) </body> 를 찾은 후, 아래 코드를 바로 윗부분에 붙여넣습니다.
- Download Source Code : Download!!
<script language=javascript>
<!--
var message="";
function clickIE()
{
if (document.all) {
(message);return false;}
}
function clickNS(e)
{
if (document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{
document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// -->
</script>
- 긁어오기(드래그) 방지 (Disable Drag) : 대쉬보드 (Dashboard) - 템플릿 (Template) - 맞춤설정 -> 고급으로 이동합니다. 고급 메뉴 중 'CSS추가'에서 아래 코드를 삽입하면 됩니다.
- Download Source Code : Download!!
html, body, div, span, object, form, input, h1, h2, button, label, a, img { -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; /* this will work for QtWebKit in future */ -webkit-user-drag: none; } input[type=text] { -moz-user-select: text; -webkit-user-select: text; }
업데이트 된 글 보기 (For more information, visit main hompage) : http://gturl.iptime.org
접속 안될 때 (When you can't access to main homepage) : http://burst-watermelon.blogspot.com
반응형
'웹 개발 > 구글 블로그' 카테고리의 다른 글
블로거 글 1개 또는 2개 보일 경우 Blogger shows 2 post (0) | 2017.12.08 |
---|---|
구글 블로그 글목록만 보이게하기 Blogger list post title (0) | 2017.08.30 |
구글 블로그 하단 홈 글씨 변경 (Blogger text to icon) (0) | 2017.02.07 |
구글 블로거 폰트 크기 종류 변경 (Blogger Font Change) (0) | 2017.02.07 |
구글 블로거 라벨 카테고리 제목만 보이는 방법 (Blogger Label) (2) | 2017.02.06 |