当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。