xxxxxxxxxx
1
2
<div class="my-custom-scrollbar my-custom-scrollbar-primary">
3
<img
4
alt=""
5
src="https://mdbootstrap.com/img/Photos/Others/img%20(51).jpg"
6
/>
7
</div>
xxxxxxxxxx
1
.my-custom-scrollbar {
2
position: relative;
3
width: 800px;
4
height: 400px;
5
overflow: auto;
6
}
xxxxxxxxxx
1
var myCustomScrollbar = document.querySelector('.my-custom-scrollbar');
2
Ps.initialize(myCustomScrollbar);
3
4
var scrollbarY = myCustomScrollbar.querySelector('.ps.ps--active-y>.ps__scrollbar-y-rail');
5
6
myCustomScrollbar.onscroll = function() {
7
scrollbarY.style.cssText = `top: ${this.scrollTop}px!important; height: 400px; right: ${-this.scrollLeft}px`;
8
}
Console errors: 0