Welcome to the in5 Answer Exchange! This a place to get answers about in5 (InDesign to HTML5) and make requests.
0 votes
I'm creating long, one page document that I will be showing in an iframe in another InDesign document. (It is a bit of a work around to create a scrollable page with other features overlaid.)

So for it to appear seamless I need the page to just appear, at present when I open it the page "grows" from the top left. Is there any way to switch off page load animation?
in misc by (200 points)
  

1 Answer

0 votes
 
Best answer

To hide the loading of the document that appears in the iframe, try adding the following CSS via the Resources section:

body #container {
    -webkit-transition:none !important;
    transition:none !important;
}

It's also possible to delay the viewing a bit more with additional CSS:

#container { display:none; opacity:0; }
body.loaded #container { display:block; opacity:1; transition:opacity .1 1s; }

Here's more information:

by (26.6k points)
selected by
Thank you so much! Works like a charm!!!!
You're very welcome. :)