diff options
author | Eric J. Duran | 2012-10-17 17:46:43 -0400 |
---|---|---|
committer | Eric J. Duran | 2012-10-17 17:46:43 -0400 |
commit | 070a1e3ee5bbe44b6f3cdadedb031f3eee433ac6 (patch) | |
tree | a77dff4ec0e458de28263e02ee02be9d8c0e98d1 /notes.html | |
parent | 558c21e1a3839fa09103c3928b15315bc0928d09 (diff) |
Replacing speakernotes plugin with a simple postMessage system
Diffstat (limited to 'notes.html')
-rw-r--r-- | notes.html | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/notes.html b/notes.html new file mode 100644 index 0000000..4dbc986 --- /dev/null +++ b/notes.html @@ -0,0 +1,121 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + + <title>reveal.js - Slide Notes</title> + + <style> + body { + font-family: Helvetica; + } + + #notes { + font-size: 24px; + width: 640px; + margin-top: 5px; + } + + #wrap-current-slide { + width: 640px; + height: 512px; + float: left; + overflow: hidden; + } + + #current-slide { + width: 1280px; + height: 1024px; + border: none; + + -webkit-transform-origin: 0 0; + -moz-transform-origin: 0 0; + -ms-transform-origin: 0 0; + -o-transform-origin: 0 0; + transform-origin: 0 0; + + -webkit-transform: scale(0.5); + -moz-transform: scale(0.5); + -ms-transform: scale(0.5); + -o-transform: scale(0.5); + transform: scale(0.5); + } + + #wrap-next-slide { + width: 448px; + height: 358px; + float: left; + margin: 0 0 0 10px; + overflow: hidden; + } + + #next-slide { + width: 1280px; + height: 1024px; + border: none; + + -webkit-transform-origin: 0 0; + -moz-transform-origin: 0 0; + -ms-transform-origin: 0 0; + -o-transform-origin: 0 0; + transform-origin: 0 0; + + -webkit-transform: scale(0.35); + -moz-transform: scale(0.35); + -ms-transform: scale(0.35); + -o-transform: scale(0.35); + transform: scale(0.35); + } + + .slides { + position: relative; + margin-bottom: 10px; + border: 1px solid black; + border-radius: 2px; + background: rgb(28, 30, 32); + } + + .slides span { + position: absolute; + top: 3px; + left: 3px; + font-weight: bold; + font-size: 14px; + color: rgba( 255, 255, 255, 0.9 ); + } + </style> + </head> + + <body> + + <div id="wrap-current-slide" class="slides"> + <iframe src="index.html" width="1280" height="1024" id="current-slide"></iframe> + </div> + + <div id="wrap-next-slide" class="slides"> + <iframe src="index.html" width="640" height="512" id="next-slide"></iframe> + <span>UPCOMING:</span> + </div> + <div id="notes"></div> + + <script src="lib/js/showdown.js"></script> + <script> + (function (window, undefined) { + var notes = document.getElementById('notes'); + var currentSlide = document.getElementById('current-slide'); + var nextSlide = document.getElementById('next-slide'); + window.addEventListener("message", function(e){ + var data = JSON.parse(e.data); + if (data.markdown) { + notes.innerHTML = (new Showdown.converter()).makeHtml(data.notes); + } + else { + notes.innerHTML = data.notes; + } + currentSlide.contentWindow.Reveal.slide(data.indexh, data.indexv); + nextSlide.contentWindow.Reveal.slide(data.nextindexh, data.nextindexv); + }, false); + })(window); + </script> + </body> +</html> |