JavaScript의 터치 이벤트는 사용자가 터치스크린 기기와 상호작용할 때 시작됩니다.
다음은 포인터 이벤트 속성입니다.
이벤트 | 설명 |
---|---|
터치스타트. | 터치 포인트가 터치 표면에 있을 때 발생합니다. |
터치무브 | 터치 표면을 따라 터치 포인트가 이동할 때 발생합니다. |
터치엔드 | 터치 표면에서 터치 포인트가 제거되면 시작됩니다. |
터치캔슬 | 터치 포인트가 중단되면 실행됩니다. |
다음은 JavaScript의 터치 이벤트에 대한 코드입니다. −
예시
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result, .sample { font-size: 18px; color: blueviolet; font-weight: 500; } .sample { color: red; } </style> </head> <body> <h1>Touch events in JavaScript</h1> <div class="sample">Here is some sample text to touch</div> <div class="result"></div> <h3>Touch on the above paragraph to make output in the below paragraph visible</h3> <script> let resEle = document.querySelector(".result"); let sampleEle = document.querySelector(".sample"); sampleEle.addEventListener("touchstart", () => { resEle.innerHTML = "Touch start event has been triggered"; }); </script> </body> </html>
위의 코드는 다음과 같은 출력을 생성합니다 -
출력
단락 터치 시 -