How to synchronize scrolling positions for several iframes

后端 未结 5 1443
情歌与酒
情歌与酒 2020-11-30 06:10

I have an HTML layout based on tabs (say 5). In each tab I load an iframe. The iframe contents are variations of one another that the user can compare by switching tabs.

5条回答
  •  佛祖请我去吃肉
    2020-11-30 06:54

    I synchronize overflowed div's using code like this:

    frame1.onscroll = function(e) {
       frame2.scrollTop = frame1.scrollTop;
       frame2.scrollLeft = frame1.scrollLeft;
     };
    

提交回复
热议问题