我遇到了 Sly 滚动条的问题。
我想设置一个时间线,我不能通过用鼠标和滚动条拖动来滚动。用鼠标滚动工作正常,但我无法让滚动条工作,也没有适当的文档。
控制台上也没有错误。
这是我的滚动条:
<div id="scrollbar">
<div class="handle"></div>
</div>
这是CSS:
#scrollbar {
width: 100%;
height: 30px;
background: #f00;
margin-top: 10px;
line-height: 0;
}
#scrollbar .handle {
width: 50px;
height: 30px;
background: #00f;
position: absolute;
}
和启动滚动的 javascript 调用
$("#timeline").sly({
dragSource : '.frame',
horizontal : 1,
itemNav: 'basic',
smart : 1,
activateOn : 'click',
mouseDragging : 1,
touchDragging : 1,
releaseSwing : 1,
scrollBy : 1,
activatePageOn : 'click',
speed : 50,
easing : 'easeInOutBounce',
swingSpeed : 0.07,
elasticBounds : 1,
dragHandle : 1,
dynamicHandle : 1,
clickBar : 1,
scrollbar : '$("#scrollbar")',
dragHandle : 1
});
我需要这个用于大学项目,所以如果有人能解决我的问题,那就太酷了。