Creating Web Apps - The Touch API
Written by Mike James   
Article Index
Creating Web Apps - The Touch API
Touch in motion
Touch with color
Complete listing

Listing

The complete listing of the final version of the program is:

<!DOCTYPE html>
 <html>
  <head>
   <title>Touch</title>
   <meta http-equiv="Content-Type"
    content="text/html; charset=UTF-8">
   <meta name="viewport"
    content="width=device-width,
    initial-scale=1.0,
    user-scalable=no">
  </head>
  <body>
   <canvas id="myCanvas"
        width="800" height="800"
        style="border:1px solid #000000;" >
   </canvas>
  <script>
   var ctx = myCanvas.getContext('2d');
   myCanvas.addEventListener("touchstart",
                       handleStart, false);
   myCanvas.addEventListener("touchmove",
                       handleMove, false);
   myCanvas.addEventListener("touchend",
                       handleEnd, false);
   document.body.addEventListener('touchmove',
      function(event) {
        event.preventDefault();
      }, false);

var colors=["#FF0000","#00FF00","#0000FF"];
var colorId = [];

function handleStart(evt) {
 for(var i=0;
       i<evt.changedTouches.length;i++)
 {
  if (colors.length === 0) continue;
  var touch = evt.changedTouches[i];
  colorId[touch.identifier] = colors.pop();
  drawCircle(touch.pageX, touch.pageY,
        20, colorId[touch.identifier],ctx);
 }
}

function handleMove(evt) {
 for(var i=0;i<evt.changedTouches.length;
                                    i++){
  var touch = evt.changedTouches[i];
  if (colorId[touch.identifier] ===
                      undefined) continue;
  drawCircle(touch.pageX, touch.pageY,
       20, colorId[touch.identifier], ctx);
 }
}

function handleEnd(evt) {
 for (var i=0;i<evt.changedTouches.length;
                                      i++){
  var touch = evt.changedTouches[i];
  if (colorId[touch.identifier] ===
                       undefined) continue;
  colors.push(colorId[touch.identifier]);
 }
}

function drawCircle(x, y, r, c, ctx) {
 ctx.beginPath();
 ctx.arc(x, y, r, 0, 2 * Math.PI, true);
 ctx.fillStyle = c;
 ctx.fill();
 ctx.stroke();
}
  </script>
 </body>
</html>

 

move

What's left

There are lots of small topcs we haven't covered. In particular we have ignored the touchenter, touchleave and touchcancel events, but these are fairly easy to work with.

It is worth pointing out that there is additional information in the touch object that you can use to make your apps more sophisticated. For example, the radiusX, radiusY and rotationAngle can be used to fit an ellipse to the point of contact. The force property can also be used to work out how hard the user is pressing on the screen. Again, once you know they exist they are easy enough to use. The TouchList object also has the identifiedTouch method which can be used to return a touch object corresponding to a particular touch identifier.

Perhaps another article on touch is needed?

If you would like the code for this article register with I Programmer and visit the CodeBin.

Getting Started with Box2D in JavaScript

 

Summer SALE Kindle 9.99 Paperback $10 off!!

esp32book

 

Comments




or email your comment to: comments@i-programmer.info

To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin,  or sign up for our weekly newsletter.

 

 

Banner


JavaScript Jems - Lambda Expressions

With its first class functions, JavaScript doesn't really need lambdas, but it has them and they are useful. Find out the mysteries of the lambda in Jem 11.



Just jQuery The Core UI - Easy Plugins

There comes a point in every jQuery programmer's life when they look at some JavaScript they have just created and realize that it is time to integrate it with jQuery – in short create a plugin. It  [ ... ]


Other Articles



Last Updated ( Monday, 21 January 2013 )