Found at Girl Develop It reveal.js fork.
Original Created by Hakim El Hattab / @hakimel
reveal.js is a framework for easily creating beautiful presentations using HTML. You'll need a browser with support for CSS 3D transforms to see it in its full glory.
We highly recommend using Chrome, currently, however, the latest version of Safari, mobile Safari (iPad), Firefox and IE9 will work.
Try it out! You can swipe through the slides and pinch your way to the overview.
There's a speaker view. It includes a timer, preview of the upcoming slide as well as your speaker notes.
Press the S key to try it out.
P.S. This won't work when running the slides locally unless you run reveal.js runs from a local web server.
For HTML -- Surround your code with a div class "xml", then pre, then code.
<ul>
<li>No order here</li>
<li>Or here</li>
<li>Or here</li>
<li>Or here</li>
</ul>
We can also make code editable
<ul>
<li>No order here</li>
<li>Or here</li>
<li>Or here</li>
<li>Or here</li>
</ul>
CSS
body{
background-color: #ffffff;
}
Javascript
function helloWorld(){
var name = 'GDI';
alert("Hi, " + name)
}
PHP
function helloWorld(){
$name = 'GDI';
echo "Hi, " . $name;
}
Ruby
def hello_world
@name = 'GDI'
puts "Hi, #{@name}"
end
Python
def hello_world():
name = "GDI"
print 'Hi, ' + name
return
Java
public void helloWorld(){
String name = "GDI";
System.out.println("Hi," + name)
}
Hit the next arrow...
... to step through ...
any type
There's a few styles of fragments, like:
grow
shrink
roll-in
fade-out
highlight-red
highlight-green
highlight-blue
Slides can be nested inside of other slides, try pressing down.
Press down or up to navigate.
That's it, time to go back up.
Press ESC to enter the slide overview. Hold down alt and click on any element to zoom in on it using zoom.js. Alt + click anywhere to zoom back out.
You know, we are nerds after all and will probably get a kick out of all of this HTML. BUT, if you really don't like writing slides in HTML you can use the online editor rvl.io.
You can select from different transitions, like:
Cube -
Page -
Concave -
Zoom -
Linear -
None -
Default
Reveal.js comes with a few themes built in:
GDI Cool -
GDI Light -
GDI Sunny -
Default
* Theme demos are loaded after the presentation which leads to flicker. In production you should load your theme in the <head>
using a <link>
.
Additionally custom events can be triggered on a per slide basis by binding to the data-state
name.
Reveal.addEventListener( 'customevent', function() {
console.log( '"customevent" has fired' );
} );
These guys come in two forms, inline:
The nice thing about standards is that there are so many to choose from
and block:
For years there has been a theory that millions of monkeys typing at random on millions of typewriters would reproduce the entire works of Shakespeare. The Internet has proven this theory to be untrue.
You can link between slides internally, like this.
Press b or period on your keyboard to enter the 'paused' mode. This mode is helpful when you want to take distracting slides off the screen during a presentation.