Welcome to the in5 Answer Exchange! This a place to get answers about in5 (InDesign to HTML5) and make requests.
0 votes
When my html document first loads in the browser it flies in from the top/left of the window. Is there a way to disable this fly-in?
in how_to by (120 points)
  

1 Answer

+1 vote

You can attach the following code in the Resources section of the export dialog box to hide all content until it's all loaded:

#container { display:none; } body.loaded #container { display:block; }

by (9.6k points)