buzinas / simple-scrollbar

Very simple and lightweight vanilla javascript library for creating a custom scrollbar cross-browser.
MIT License
575 stars 159 forks source link

Bar too big (prevent double scrollbars)! #59

Open RedskyThirty opened 4 years ago

RedskyThirty commented 4 years ago

Hello, I fixed a small issue in the method "moveBar".

var barHeight = Math.max(_this.scrollRatio * 100, 10); _this.bar.style.cssText = 'height:' + barHeight + '%; top:' + Math.min((_this.el.scrollTop / totalHeight ) * 100, (100 - barHeight)) + '%;right:' + right + 'px;';