HTML DOM 觸控事件
當觸控從觸控式螢幕中移除時,會觸發 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>
輸出
在觸控‘等待’按鈕之前 −
在觸控式螢幕幕上的‘等待’按鈕後 −
廣告