터치스크린에서 터치가 제거되면 HTML DOM 터치엔드 이벤트가 트리거됩니다.
참고:이 이벤트는 터치 장치에만 해당됩니다.
다음은 구문입니다 -
HTML에서 터치엔드 이벤트 트리거 -
ontouchend = "eventFunction()"
JavaScript에서 터치엔드 이벤트 트리거 -
eventObject.ontouchend = eventFunction
터치엔드 이벤트의 예를 살펴보겠습니다. 속성 -
예시
<!DOCTYPE html> <html> <head> <title>HTML DOM touchend event</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 50%; font-size: 20px; padding: 20px; border: 5px solid rgb(220, 53, 69); background: rgba(220, 53, 69, 0.5); color: #fefefe; } </style></head> <body> <form> <fieldset> <legend>HTML-DOM-touchend-event</legend> <label for="textSelect">Game Time</label> <input type="button" id="gameSelect" value="Hold On"> <div id="divDisplay">Hold On for 1 - sec to Win</div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var gameSelect = document.getElementById("gameSelect"); var duration = 1000; var timer; gameSelect.ontouchstart = startEventAction; function startEventAction() { timer = setTimeout(victory, duration); } gameSelect.ontouchend = endEventAction; function endEventAction(){ if(timer) clearTimeout(timer); } function victory(){ divDisplay.textContent = "You Win" } </script> </body> </html>
출력
'Hold On'을 터치하기 전에 버튼 -
화면을 터치한 후 'Hold On' 버튼 -