1
2
3
4
5
onscroll = function(e){
    let diff = this.scrollY - this.oldScroll
    scrollTo(0, this.scrollY + diff * 2)
    this.oldScroll = this.scrollY;
}
Edit

Pub: 05 Oct 2023 00:48 UTC

Edit: 05 Oct 2023 00:48 UTC

Views: 83