-
Notifications
You must be signed in to change notification settings - Fork 229
hints
sokra edited this page Mar 29, 2012
·
3 revisions
- TODO
- use Safari, it has currently the best support
- alternative: use Chrome, but disable hash change by config option
hash: { use: false } - try to hide out-of-scope steps
.step:not(.active) > .step { opacity: 0 !important; } - try to hide out-of-scope images
- delay transition by a few milliseconds, this allow the browser to load elements and make your transition better.
.step { transition: all 1s ease-in-out 0.3s, opacity 1s ease-in-out 0.1s; } - @edjafarov has developed a remote for i/jmpress.js and deck.js presentations: http://remote.nodester.com/
- offer mouse and keyboard interface
- use the fallback mechanism correctly
- offer printable version
- consider to disable hash support
hash: { use: false } - TODO