【发布时间】:2015-04-11 14:38:12
【问题描述】:
如何让幻灯片在移动设备上滑动?
我正在使用 anoSlide:http://www.anowave.com/factory/anoslide/demo.html。
这是触发滑块 next 和 prev 的代码:
$('.carousel ul').anoSlide(
{
items: 1,
speed: 500,
prev: 'a.prev',
next: 'a.next',
lazy: true,
auto: 4000
})
向左或向右滑动时是否可以触发下一个、上一个按钮?
到目前为止,我有这个,但它不起作用:
$('.carousel-contentList').on("swiperight",function(){
$(this).anoSlide({next: next});
});
$('.carousel-contentList').on("swipeleft",function(){
$(this).anoSlide({prev: prev});
});
【问题讨论】:
标签: javascript jquery jquery-mobile