aboutsummaryrefslogtreecommitdiff
path: root/slidenotes/notes.html
blob: 955dce18659c48288a37277ba5b6af55de6745ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">

    <title>Slide Notes</title>

    <meta name="description" content="">
    <meta name="author" content="Rebecca Murphey">

    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

    <style>
      #notes {
        font-family: Helvetica;
        font-size: 24px;
        width: 640px;
      }

      #wrap-slides {
        width: 640px;
        height: 512px;
        float: left;
      }

      #slides { 
        width: 1280px; 
        height: 1024px; 
        border: 1px solid black; 
        -moz-transform: scale(0.5);
        -moz-transform-origin: 0 0;
        -o-transform: scale(0.5);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(0.5);
        -webkit-transform-origin: 0 0;      
      }

      #wrap-next-slide {
        width: 320px;
        height: 256px;
        float: left;
        margin: 0 0 0 50px;
      }

      #next-slide { 
        width: 1280px; 
        height: 1024px; 
        border: 1px solid black; 
        -moz-transform: scale(0.25);
        -moz-transform-origin: 0 0;
        -o-transform: scale(0.25);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(0.25);
        -webkit-transform-origin: 0 0;      
      }
    </style>
  </head>

  <body>

    <div id="wrap-slides">
      <iframe src="/?receiver" width="1280" height="1024" id="slides"></iframe>
    </div>

    <div id="wrap-next-slide">
      <iframe src="/?receiver" width="640" height="512" id="next-slide"></iframe>
    </div>
    <div id="notes"></div>

    <script src="socket.io/socket.io.js"></script>

    <script>
    var socket = io.connect('http://localhost:1947');
    var notes = document.getElementById('notes');
    var slides = document.getElementById('slides');
    var nextSlide = document.getElementById('next-slide');

    socket.on('slidedata', function(data) {
      notes.innerHTML = data.notes;
      slides.contentWindow.Reveal.navigateTo(data.indexh, data.indexv);
      nextSlide.contentWindow.Reveal.navigateTo(data.nextindexh, data.nextindexv);
    });
    </script>

  </body>
</html>