我想要两个 .scrollable() 函数并有两个 .navigator() 实例;
我的页面:(请参阅底部的滚动条)http://tinyurl.com/69r4bth
我的JS
<script type="text/javascript">
$(function() {
$(".scrollable").scrollable({
circular: true,
easing: 'easeInOutQuad',
speed: 700
}).autoscroll({
autoplay: true,
interval: 4000
}).navigator();
$(".scrollabler").scrollable({ //"scrollabler - note with the r at end
circular: true,
easing: 'easeInOutQuad',
speed: 700
}).autoscroll({
autoplay: true,
interval: 4000
}).navigator();
});
</script>
问题是按钮和滑块不适用于右侧的第二个滚动条。希望能在 1 小时内快速修复截止日期!