可以将JCarousel配置为循环“不停止”吗?我希望配置我的旋转木马连续恒定循环移动。没有放慢速度。
由于
答案 0 :(得分:1)
要让它不断旋转,你应该能够设置自动:.1和动画:5000(或者你想要的任何速度。下面是一个让我花了很长时间才能正常运行的例子。它通过它来获取数据jQuery AJAX。
var lis; //Global variable holding the data.
var myCarousel01; //Global variable holding the carousel.
$(document).ready(function () {
updateData();
$("#tableapp").ajaxStop(function () {
InitiateCarousels();
}
rebindCarousels();
});
});
function updateData() {
$.get('AjaxPages/ApplicationMonitor.aspx', function (data) {
lis = $(data).find("li");
});
}
function InitiateCarousels() {
jQuery('#mycarousel1').jcarousel({
wrap: 'circular',
auto:.1, //Amount of time you want slide to stop in seconds
animation:5000, //Desired speed in milliseconds
easing:"linear", //Prevents the slides from "slowing down"
initCallback: myCarousel01_initCallback,
itemFirstInCallback: myCarousel01_itemFirstInCallback
});
});
function myCarousel01_initCallback(carousel, state) {
if (state == "init") {
myCarousel01 = carousel; //Bind carousel to global variable so you can retrieve it later.
}
}
function rebindCarousels() { //This function gets called after data is binded to the lis variable. See: "ajaxStop" function above.
//Rebind Carousel01
myCarousel01.list.empty();
$.each(lis, function (i, l) {
myCarousel01.add(i + 1, l);
});
myCarousel01.size(lis.length);
}
希望这有助于某人。这需要一段时间才能完成这项工作,我在这里进行了粗略的复制/粘贴,因此可能需要一些调整。如果这有帮助,请将其标记为已回答。