1

在我制作了一个示例滑块后,我将处理程序设置为自定义高度。但在顶部,它会隐藏起来,而在底部,它会移出。

任何人都可以帮助“重新调整处理程序大小的正确方法是什么?”

我的代码:

$(function() {
    $('#sample').slider({orientation:'vertical'});
});​

CSS:

.ui-slider {
    position: relative;
    height: 300px;
    width: 20px;
    line-height: 20px;
    border-radius: 2em;
    background: #CCC;
    margin-left:50px;
}
.ui-slider-handle.ui-state-default {
    display: block;
    cursor: move;
    height:100px;
    margin-left:4px;
    margin-top:0.2em;
    background: #333
}​

jsfiddle在这里

4

0 回答 0