leftEle.addEventListener("scroll", (e) =>{
rightEle.scrollTop= e.target.scrollTop
})
rightEle.addEventListener("scroll", (e)=> {
leftEle.scrollTop= e.target.scrollTop
})
causes the mouse scroll to slide very slowly, so the scrollTop on both sides should contain each other"s scrolling at the same time. Is there any way to use both scrolls to isolate synchronization without restraining