Scrolling iframe on iOS is solved, BUT the iframe page display incomplete

后端 未结 4 588
无人共我
无人共我 2021-02-06 09:24

I am trying to scroll an iframe on iOS, and I succeeded, it\'s scrolling well, reference:

http://home.jejaju.com/play/iframe-scroll.html

http://areaaperta.com/ni

4条回答
  •  长情又很酷
    2021-02-06 10:20

    Try adding -webkit-transform:translate3d(0,0,0) to the iframe style and all elements within to force hardware acceleration - should reduce the choppiness.

    In main page style:

    iframe {  -webkit-transform:translate3d(0,0,0); }
    

    and in iframe style:

    p { -webkit-transform:translate3d(0,0,0); }
    

提交回复
热议问题