box / box-content-preview

JavaScript library for rendering files stored on Box
https://developer.box.com/docs/box-content-preview
Other
106 stars 113 forks source link

perf(presentation): Improve presentation rendering performance in Safari #1401

Closed jstoffan closed 3 years ago

jstoffan commented 3 years ago

The Presentation viewer creates all pages of a document as a big stack of elements using absolute positioning. It controls the page elements' visibility via the visibility style directive. However, unlike other browsers, Safari 14 on MacOS Big Sur seems to frequently layout/paint every page of the document, even if the page has visibility: hidden set. Adding opacity: 0 seems to resolve the problem.