I replied to Vasilis via email after reviewing the files. Here's what anyone else can do if you have a Slider document that you would like to not use keyboard navigation:
The Slider page formats include keyboard navigation by default regardless of whether or not Enable Keyboard Navigation in Presentation Mode is selected.
I would recommend setting the page format to Flipbook in the Export HTML5 with in5 dialog (in5 > Export HTML5 with in5...) and making the following modifications so that the Flipbook will look more like the Slider but not allow keyboard navigation:
- When exporting either by going to in5 > Export HTML5 with in5... or to in5 > Easy Export Wizard... and click the Advanced button, go to the Basic section of the Export HTML5 with in5 dialog and set the Page Format to Flipbook
- Go to the Resources section of the Export HTML5 with in5 dialog
- Copy the following CSS, click the + button in the CSS portion, and click Paste code... to remove the shadows that are a part of the flipbook
.turn-page {
-moz-box-shadow:0px 0px 0px rgba(0,0,0,0);
-webkit-box-shadow:0px 0px 0px rgba(0,0,0,0);
box-shadow:0px 0px 0px rgba(0,0,0,0);
}
- Copy the following JavaScript, click the + button in the JavaScript portion, and click Paste code... to force the Flipbook to be a single page instead of a 2-page spread:
- Click OK to export
- Make the following manual edits to assets/turn.min.js (To modify the code, open the assets/turn.min.js file in a text editor such as TextEdit (macOS) or Notepad (Windows) or in an IDE such as Dreamweaver which is available if you have the full Adobe Creative Cloud subscription):
- Open assets/js/turn.min.js and change cornerSize:75 to cornerSize:0 to remove the corner peel
- Search for the two instances of duration:600 at the top. Replace both of those with duration:0, to remove the page animation