监听appframework的Touch事件
Events
|
1
2
3
4
5
6
7
8
9
|
tap
Tap on the elementsingleTap
Single tap on the elem (250ms延迟)doubleTap
双击longTap
长按swipe
The element was swiped (30px threshold)swipeLeft
leftswipeRight
rightswipeUp
upswipeDown
down |
使用方法:
//双击
//长按
.....
|
1
|
$("#element").bind("doubleTap",function(){
//do some js;
}); |
|
|
|
|
|
2
|
$("#element").bind("longTap",function(){
//do some js;
}); |
.....
|
2
|
$("#element").bind("longTap",function(){
//do some js;
}); |