I am creating an Image creator using canvas HTML5. In which I am drawing images inside the canvas. You can check the following example for demo.
http://radikalfx.com/files/collage/demo.html
What I want is that it should support the Touch Events of IPAD. For this I know I must use events like
Code:
canvas.addEventListener('touchstart', drawOnIpadStart, false); canvas.addEventListener('touchmove',
Leave a comment: