使用拇指进行flexslider:
$(window).load(function() {
// The slider being synced must be initialized first
$('#carousel').flexslider({
animation: "slide",
controlNav: false,
animationLoop: false,
slideshow: false,
itemWidth: 210,
itemMargin: 5,
asNavFor: '#slider'
});
$('#slider').flexslider({
animation: "slide",
controlNav: false,
animationLoop: false,
slideshow: false,
sync: "#carousel"
});
});
一切都很有效。但如果我包含jquery UI - 滑块不起作用。
我该如何解决?
答案 0 :(得分:3)
更改jquery
和jquery ui
版本。在jsfiddle中使用jquery.2x(edge)和jquery ui 1.10.3。