0

我是这个网站的新手,这是我在这里问的第一个问题..如果它简单,请原谅我..我已经绘制了一个背景图像,在此我使用 drawImage() 方法绘制了 5 个小图像。一旦我触摸小图像,它们就会消失或弹出一个警报框,但到目前为止我没有发生 ontouch 事件,但我已经搜索了 ontouch 事件但没有用。我不想通过 HTML 中的 img 标签绘制图像。这是我的代码段

var car = new Image();
car.src = "img/car.jpg";
    car.onload = function() {
    imgLoaded = true;
}
if (imgLoaded = true) {
    drawBackgroundImg();
    drawCarImg();

}


 function drawCarImg() {
if (i == 0) {
    x1 = Math.floor((Math.random() * 501));
    y1 = Math.floor((Math.random() * 301));
    cxt.save();
    cxt.drawImage(car, x1, y1, car.width, car.height);
    cxt.restore();

   }
  }
 car.on('touchstart', function() {
 alert("T");
 });

Here is my HTML code

<!DOCTYPE html>
  <body>   
<div id="container" onclick="void(0)">
    <canvas id="can"> </canvas>

</div>
<div id="btn">
    <input type="image" id="zoomIn" src="img/up.png" onclick="zoomIn()" />
    <input type="image" id="zoomOut" src="img/down.png"
        onclick="zoomOut()" />
</div>
<div id="score">
    <p id="scoreCount">
        <b></b>
    </p>
</div>
 </body>
</html>

任何人都可以帮助我获得解决方案。仅供参考:我在 Phonegap 中运行此代码,而不是在浏览器中。

4

3 回答 3

0
$( '#id' ).on( 'touchstart',function(){
                     //your code
                       });

这里的 id 是你想要监听触摸事件的 html 元素的 id。

于 2013-10-04T10:50:16.370 回答
0
$('#id').on('touchmove',function(){
      alert("T");

  }); 
$('#id').on('click',function(){
       alert("T");

});
于 2013-10-04T10:58:02.507 回答
0

我找到了答案,我将 div 设为不可见并将图像放置在绝对位置,并使用图像的 id 并触发 touchstart 事件。上面说的例子在这里

  $('#id').on('touchmove',function(){
  alert("T");

   }); 
 $('#id').on('click',function(){
   alert("T");

  });
于 2013-10-09T07:49:59.460 回答