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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。