phonegap+html5长按事件方法
phonegap+html5长按事件方法在 android 原生开发中我们会发现有这样一个功能,比如说按住一个按钮实现录音,然后手指放起来录音完成,那么在 phoengap+html5跨平台开发中有没有相关的方法.
下面我们利用html5的 canvas方法实现 :
var canvas = document.getElementById("canvas");
function touchStart(event) {
}
function touchEnd(event) {
alert('ddddddddd');
}
canvas.addEventListener("touchstart", touchStart, false);
canvas.addEventListener("touchend", touchEnd, false);
这个是怎么个情况,怎么看不懂啊???? 这个是cordova 3.0 以上的功能吧? 你好,请问使用js如何实现长按录音的功能,也是这个方法吗? 顶一个,顶一个,顶一个,顶一个,顶一个,
页:
[1]