Welcome to the in5 Answer Exchange! This a place to get answers about in5 (InDesign to HTML5) and make requests.
0 votes
Asked over email.

Copying here for anyone to use.
in how_to by (197k points)
  

1 Answer

0 votes
 
Best answer
Attach the following code as a .css file in the Resources section of the in5 dialog (how to attach resources):
 
.liquid .page {
display:block !important;
opacity:0;
pointer-events:none;
-webkit-transition:opacity .6s;
transition:opacity .6s;
}

.liquid .page.activePage {
opacity:1;
pointer-events:auto;
-webkit-transition:opacity .6s;
transition:opacity .6s;
}
by (197k points)