Jquery滑块100%高度

时间:2012-07-09 02:38:46

标签: jquery slider height param

我正在尝试将容器div的垂直jquery slider设置为100%高度。我怎样才能做到这一点?我已尝试将参数height: 400更改为height:"100%",但这只会将页面拉伸到整个滑块内容的高度。目标是在页面上没有滚动条的灵活页面

$(document).ready(function() {
    $('#my-list').hoverscroll();

});

// Override default parameters onload
$.fn.hoverscroll.params = $.extend($.fn.hoverscroll.params, {
    vertical: true,
    width: 221,
    height: 400,
    arrows: false
});

1 个答案:

答案 0 :(得分:1)

无需扩展插件。 Hoverscroll接受对象形式的参数。

$('#my-list').hoverscroll({
  vertical: true,
  width: 221,
  height: $('container-div').height(),
  arrows:false
});

container-div替换为您希望引用高度的元素。