當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML TouchEvent targetTouches用法及代碼示例


TouchEvent targetTouches屬性是隻讀屬性,用於返回Touch對象的數組。它為觸摸當前目標元素的每個手指返回一個對象。

用法:

event.targetTouches

以下示例程序旨在說明TouchEvent的targetTouches屬性:


例:找出接觸元素的手 index 。

<!DOCTYPE html> 
<html> 
<meta name="viewport" 
      content="width=device-width, initial-scale=1"> 
  
<head> 
    <title> TouchEvent targetTouches property in HTML 
  </title> 
    
    <style> 
        #samplediv { 
            border:1px solid green; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body ontouchstart="countTouches(event)" 
      ontouchend="countTouches(event)"> 
  
    <h1>GeeksforGeeks</h1> 
    <h2> TouchEvent targetTouches property </h2> 
    <br> 
  
    <p>The current element is touched by  
      <span id="touch">0</span> fingers.</p> 
  
    <script> 
        function countTouches(event) { 
            
            //  Returning touched target. 
            var t = event.targetTouches.length; 
            document.getElementById("touch").innerHTML = 
              t; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

觸摸屏幕後:

觸摸屏幕後:

支持的瀏覽器:

  • Opera
  • IE瀏覽器
  • 穀歌瀏覽器
  • Firefox
  • 蘋果Safari


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM TouchEvent targetTouches Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。