任何人都知道如何将jcoverflip轮播中的图像循环到连续循环中? 我试着操纵它不起作用的dom buf:P
任何想法?文档很差,我在谷歌上找不到多少
答案 0 :(得分:0)
您可以检查轮播是否在最后一项上,如果是,您可以使用其文档中描述的以下方法。
first([callback], [originalEvent={}])
Move the current to the start.
callback: a function to get called
originalEvent: the originating event object
您可以使用current
方法获取当前的轮播位置,该方法也在文档中进行了描述。
current([newCurrent, [originalEvent]])
Get the current item index if no parameters are passed. If newCurrent is passed, then it will move the current item to the index.
答案 1 :(得分:0)
我认为我已经解决了这个问题。
$(document).ready(function(){
$('#flip').jcoverflip({ current: 1 });
$('.next').click(function(){
$('#flip').jcoverflip('next', '1', true);
});
$('.prev').click(function(){
$('#flip').jcoverflip('previous', '1', true);
});
});
这对我来说非常有效 - 希望有所帮助。在jcoverflip网站上,API真的很糟糕。