移動web js觸屏事件
阿新 • • 發佈:2018-12-20
移動web js觸屏事件 按下 鬆開 滑動講解
一、觸控事件
ontouchstart
ontouchmove
ontouchend
ontouchcancel
目前移動端瀏覽器均支援這4個觸控事件,包括IE。由於觸屏也支援MouseEvent,因此他們的順序是需要注意的:
touchstart → mouseover → mousemove → mousedown → mouseup → click1
/*** onTouchEvent*/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|