Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- jQuery
- i18n
- 확장자
- random
- smarty
- JavaScript
- docker
- ubuntu
- centos
- 한글 깨짐
- TPL
- MySQL
- install
- Python
- 천단위
- 일괄변경
- mariadb
- 문자열자르기
- 부모창
- yum
- SVN
- Eclipse
- RabbitMQ
- Oracle
- TextBox
- Postfix
- Selectbox
- replace
- php
Archives
- Today
- Total
wilson's story
화면 드레그 막기 본문
반응형
Front 에서 드레그하여 내용들을 블럭화 되는 걸 막아 달라는 요청이 있을 수 있다
이럴때 사용하기 좋은 CSS 가 있다
<style> .dragNo { -ms-user-select: none; -moz-user-select: none; -webkit-user-select: none; -khtml-user-select: none; user-select: none; } </styple> <body class="dragNo"> </body>
이렇게 씌우면 드레그 하여 블럭이 되지 않는걸 확인 할 수 있다
swiper 플러그인으로 된 드레그는 정상 작동 된다
반응형