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

米广义 2019-12-21 18:07:00

推荐回答

你在进行一张滑动的时候同时进行另外一张的操作就好了。比如你可以jQuery选择多个图片对象,然后each每个对象,进行css左移控制,言外之意就是把你一张操作挪到each方法块里就好了。
齐晓民2019-12-21 18:11:02

提示您:回答为网友贡献,仅供参考。

其他回答

  • 可以使用事件绑定机制。如:$''元素''.bind{''touchstartmousedown'':function{$''#touch_tips''.text''按下或触摸'';},''touchmovemousemove'':function{$''#touch_tips''.text''移动中'';},''touchendtouchcancelmouseup'':function{$''#touch_tips''.text''松开'';}}具体请搜索手机触屏事件。注意,不支持windowsphone。
    赵高俊2019-12-21 18:37:55
  • 可以使用事件绑定机制。如:$''元素''.bind{    ''touchstart mousedown'' : function{        $''#touch_tips''.text''按下或触摸'';    },    ''touchmove mousemove'' : function{       $''#touch_tips''.text''移动中'';    },    ''touchend touchcancel mouseup'' : function{       $''#touch_tips''.text''松开'';    }}具体请搜索手机触屏事件。注意,不支持windowsphone。
    龚子龙2019-12-21 18:20:43

相关问答