0

我想知道为什么下面的高度71px会将 div 滚动到底部?

我需要,58px但是当页面加载时滚动应该保持在顶部。

有人知道设置这个的配置吗?

$(".scro").mCustomScrollbar({
    scrollButtons: {
        enable: true
    }
});

.scro {
    width:260px;
    height:71px; // 70px
    background:#333;
}

更新:如果按钮为假,则行为是正确的。

scrollButtons:{
   enable:false
}

http://jsfiddle.net/DpvTd/

4

1 回答 1

0

感谢@malihu(作者插件)

.mCSB_scrollTools .mCSB_dragger {
    cursor:pointer;
    width:100%;
    *height:10px;*
}
于 2013-08-19T14:56:43.997 回答