jquery怎么实现手机触屏图片滑动代码,手向左或向右滑动,图片滑动。不滑动的时候图片自动循环滚动
展开全部
可以使用事件绑定机制。
如:
$('元素').bind({ 'touchstart mousedown' : function(){ $('#touch_tips').text('按下或触摸'); }, 'touchmove mousemove' : function(){ $('#touch_tips').text('移动中'); }, 'touchend touchcancel mouseup' : function(){ $('#touch_tips').text('松开'); }})具体请搜索【touch event】手机触屏事件。注意,不支持windows phone!
如:
$('元素').bind({ 'touchstart mousedown' : function(){ $('#touch_tips').text('按下或触摸'); }, 'touchmove mousemove' : function(){ $('#touch_tips').text('移动中'); }, 'touchend touchcancel mouseup' : function(){ $('#touch_tips').text('松开'); }})具体请搜索【touch event】手机触屏事件。注意,不支持windows phone!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询