我正在爲我的網站使用SlimScroll插件。重置窗口大小調整功能
我想重置/重新啓動窗口大小的slimscroll函數,因爲高度和寬度應根據#content_wrapper
div的高度和寬度進行更改。
我試過了幾種方法,但似乎沒有什麼關係。在我目前的代碼下面。有誰知道我能做到這一點?
$('#content_wrapper').slimScroll({
width: $('#content_wrapper').css({'width':(($(window).width())-240)+'px'}),
height: $('#content_wrapper').css({'height':(($(window).height())-65)+'px'})
});
// scrollbar onresize resetten
$(window).resize(function(){
$('#content_wrapper').slimScroll({
width: $('#content_wrapper').css({'width':(($(window).width())-240)+'px'}),
height: $('#content_wrapper').css({'height':(($(window).height())-65)+'px'})
});
});
你爲什麼要從window.width減去240和65? – Purag
因爲65px是頁腳的高度,而240px是菜單的寬度。 –
我明白了。爲了讓它看起來更好,可以嘗試在變量中添加新的寬度/高度,並在slimScroll函數中設置變量。 (我也注意到你有$(window)> height()' - 你不需要)括號。 – Purag