diff --git a/README.md b/README.md index bc31975..00316e6 100644 --- a/README.md +++ b/README.md @@ -205,14 +205,11 @@ You can also add relative navigation links, similar to the built in reveal.js co - + ``` -### Fullscreen mode -Just press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode. - ### Fragments Fragments are used to highlight individual elements on a slide. Every elmement with the class ```fragment``` will be stepped through before moving on to the next slide. Here's an example: http://lab.hakim.se/reveal-js/#/16 @@ -232,7 +229,7 @@ The default fragment style is to start out invisible and fade in. This style can Multiple fragments can be applied to the same element sequentially by wrapping it, this will fade in the text on the first step and fade it back out on the second. -``` +```html
I'll fade in, then out @@ -240,11 +237,6 @@ Multiple fragments can be applied to the same element sequentially by wrapping i
``` -### Overview mode - -Press "Esc" key to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides, -as if you were at 1,000 feet above your presentation. - ### Fragment events When a slide fragment is either shown or hidden reveal.js will dispatch an event. @@ -258,6 +250,14 @@ Reveal.addEventListener( 'fragmenthidden', function( event ) { } ); ``` +### Overview mode + +Press "Esc" key to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides, +as if you were at 1,000 feet above your presentation. + +### Fullscreen mode +Just press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode. + ## PDF Export @@ -294,7 +294,7 @@ By default notes are written using standard HTML, see below, but you can add a ` In some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the requried scripts by adding the following dependencies: -``` +```javascript { src: '/socket.io/socket.io.js', async: true }, { src: 'plugin/notes-server/client.js', async: true } ```