Scroll 2 scrollbars with jquery the same time

后端 未结 4 1657
心在旅途
心在旅途 2020-12-09 04:59

Is it possible to scroll 2 scrollbars with one scrollbar?

4条回答
  •  独厮守ぢ
    2020-12-09 05:24

    (to append beeglebug):

    For horizontal 'linked' scrolling use:

    $('.linked').scroll(function(){
        $('.linked').scrollLeft($(this).scrollLeft());
    });
    

提交回复
热议问题