手机上触屏事件

发布于:2017-08-25 17:03:07

touchstart:触摸开始的时候触发

$('.index-tab li .v1').bind('touchstart',function(){ $(this).css('background-color','#006a9b'); });

touchend:触摸结束的时候触发

$('.index-tab li .v1').bind('touchend',function(){ $(this).css('background-color','#0098d6'); });

touchmove:手指在屏幕上滑动的时候触发


觉得有用请点个赞吧!
1 532