Skip to content

Instantly share code, notes, and snippets.

@imakewebthings
Created February 26, 2012 07:13
Show Gist options
  • Save imakewebthings/1914665 to your computer and use it in GitHub Desktop.
Save imakewebthings/1914665 to your computer and use it in GitHub Desktop.
<div class="slide">
<pre><code>var x = 5;
x * x; => <span class="reveal"><span class="first">???...</span><span class="second">25</span></span></code></pre>
</div>
<style>
.reveal {
-webkit-transform:none !important;
-moz-transform:none !important;
-o-transform:none !important;
-ms-transform:none !important;
transform:none !important;
position:static !important;
}
.reveal.deck-current .first,
.reveal.deck-before .first,
.reveal.deck-previous .first,
.reveal.deck-next .second,
.reveal.deck-after .second
{
display:none;
}
</style>
<script>
$.deck('.slide, .reveal');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment