Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM 터치스타트 이벤트


HTML DOM 터치스타트 이벤트는 터치 스크린을 터치할 때 트리거됩니다.

참고 − 본 이벤트는 터치기기 전용 이벤트입니다.

다음은 구문입니다 -

HTML에서 터치 시작 이벤트 트리거 -

ontouchstart = "eventFunction()"

JavaScript에서 터치 시작 이벤트 트리거 -

eventObject.ontouchstart = eventFunction

참고 − 모바일 또는 터치 액세스가 가능한 시스템에서 액세스하는 온라인 HTML 편집기에서 터치 이벤트 예제를 실행했습니다. 화면을 2초 동안 터치하는 것과 같은 터치 조작을 수행할 수 있도록 하기 위한 것입니다.

터치스타트 이벤트 의 예를 살펴보겠습니다. 속성 -

예시

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM touchstart 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-touchstart-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'을 터치하기 전에 버튼 -

HTML DOM 터치스타트 이벤트

화면을 터치한 후 'Hold On' 버튼 -

HTML DOM 터치스타트 이벤트