我正在尝试在 HTML 中编写自定义滚动条。
就像是
<div class="demo">
<div class="content">
My content comes here
</div>
<div class="scrollbar">
<div class="thumb"></div>
</div>
</div>
我正在尝试使用 jquery 动态设置拇指的高度。
但是,无法弄清楚拇指大小的公式。
尝试了一些类似的东西
$.scrollViewHeight = $('.demo').height();
$.contentHeight = $('.content').height();
$.thumbHeight = ($.scrollViewHeight / $.contentHeight) * $.scrollViewHeight;
$('.thumb').height($.thumbHeight);
但它不起作用。
Q1。得到拇指高度的公式是什么?
50px
我也使用 css保持最小拇指大小。
Q2。那么,在这种情况下,我们如何计算拇指的速度,因为内容会更多。
.