본문 바로가기
HTML&CSS

[HTML] 마우스 우클릭 금지, 드래그 금지

by dev또리 2023. 6. 12.
728x90

웹페이지를 작업할 때에, 저작권 불펌 방지를 위해 드래그 금지, 우클릭 금지를 걸어야 할 때가 있다.
html로 처리하는 방법과, css로 처리하는 방법 두 가지가 있다.

 

 

 

html

1) 우클릭 금지

<body oncontextmenu="return false">
</body>

 

2) 마우스 드래그 금지

<body oncontextmenu="return false" ondragstart="return false" onselectstart="return false">
</body>

 

 

 

CSS

div{ -webkit-touch-callout: none;
     user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     -webkit-user-select: none;
}
728x90

댓글