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


HTML touchmove事件用法及代码示例


当用户在屏幕上移动手指时,touchmove事件用于执行脚本。它仅在触摸屏设备上起作用,并且每次移动都会触发一次,并继续触发直到手指松开。

用法:

object.ontouchmove = myScript;

以下示例程序旨在说明touchmove事件:
例:当用户将手指移到P元素上时执行JavaScript。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>touchmove Event in HTML</title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>touchmove Event</h2> 
    <br> 
  
    <p ontouchmove="move(event)"> 
      Touch somewhere in the paragraph and then  
      move the finger to trigger a function that 
      will display the x and y coordinates of the touch. 
  </p> 
    <br> 
  
    <p id="test"></p> 
  
    <script> 
        function move(event) { 
            
            var X = event.touches[0].clientX; 
            
            var Y = event.touches[0].clientY; 
            
            document.getElementById( 
              "test").innerHTML = X + ", " + Y; 
        } 
    </script> 
  
</body> 
  
</html>

输出:

触摸屏幕之前:

触摸屏幕后:

支持的网页浏览器

  • IE浏览器
  • 谷歌浏览器
  • Firefox


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM touchmove Event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。