css속성으로 터치이벤트 막기

선디·2021년 4월 24일
0

css속성을 사용해서 터치이벤트를 막을 수있다!
그 css속성은 touch-action

/* Keyword values */
touch-action: auto;
touch-action: none;
touch-action: pan-x;
touch-action: pan-left;
touch-action: pan-right;
touch-action: pan-y;
touch-action: pan-up;
touch-action: pan-down;
touch-action: pinch-zoom;
touch-action: manipulation;

/* Global values */
touch-action: inherit;
touch-action: initial;
touch-action: unset;

자세한 내용은
https://developer.mozilla.org/en-US/docs/Web/CSS/touch-action

0개의 댓글