HTML Canvas Touch event

Description

HTML Canvas Touch event

View in separate window

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Touch Events</title>
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
  </head>//from   www  .  ja  v  a2 s.  c om
  <body>
    <canvas id="canvas" width="400" height="400"></canvas>
    <aside>Open debugging console in web browser of touch-capable device.</aside>
    
    <script>
    window.onload = function () {
      var canvas = document.getElementById('canvas');

      function onTouchEvent (event) {
        console.log(event.type);
      }

      canvas.addEventListener('touchstart', onTouchEvent, false);
      canvas.addEventListener('touchend', onTouchEvent, false);
      canvas.addEventListener('touchmove', onTouchEvent, false);
    };
    </script>
  </body>
</html>



PreviousNext

Related