jquery怎么实现手机触屏图片滑动代码,手向左或向右滑动,图片滑动。不滑动的时候图片自动循环滚动

2020-09-23 社会 71阅读

可以使用事件绑定机制。

如:

$('元素').bind({
    'touchstart mousedown' : function(){
        $('#touch_tips').text('按下或触摸');
    },
    'touchmove mousemove' : function(){
       $('#touch_tips').text('移动中');
    },
    'touchend touchcancel mouseup' : function(){
       $('#touch_tips').text('松开');
    }
})

具体请搜索【touch event】手机触屏事件。注意,不支持windows phone!

声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com