我的代碼允許在底部垂直滾動來控制頂部橫向滾動。構建一個滾動控制器,需要反轉它
你會看到的顏色通過梯度轉移。工作得很好。問題是,我似乎無法完成相反的工作。在頂部的水平滾動控件在底部滾動。
任何想法?
這裏的,使得它的工作腳本:
// Add event listener for scrolling
$("#bottom").on("scroll", function bottomScroll() {
var scrolledleft = parseInt($("#bottom").scrollTop()) * 1;
console.log(scrolledleft + scrolledright)
$("#top").scrollLeft(scrolledleft + scrolledright)
})
//Move right column to bottom initially
$("#top").scrollLeft($("#top").height())
//Get actual distance scrolled
var scrolledright = parseInt($("#top").scrollLeft())
你在需要滾動事件處理程序#top,對於初學者來說,類似於#bottom的處理程序。 – James
是的,我試過了,對我來說棘手的部分是適當地轉換方法,將scrollTop轉換爲scrollLeft也許? –