जब टच स्क्रीन से टच हटा दिया जाता है तो HTML DOM टचएंड इवेंट ट्रिगर हो जाता है।
नोट:यह घटना केवल स्पर्श उपकरणों के लिए है।
निम्नलिखित वाक्य रचना है -
HTML में ट्रिगर टचएंड इवेंट -
ontouchend = "eventFunction()"
जावास्क्रिप्ट में ट्रिगर टचएंड इवेंट -
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>
आउटपुट
'होल्ड ऑन' . को छूने से पहले बटन -
स्क्रीन को छूने के बाद ‘होल्ड ऑन’ बटन -