-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
164 lines (133 loc) · 5.13 KB
/
index.html
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>remotes.io - Remote control for the Web</title>
<meta name="description" content="Control web pages remotely from your phone or tablet">
<meta name="author" content="Philip Nuzhnyy">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/theme/default.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<script>
// If the query includes 'print-pdf' we'll use the PDF print sheet
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Used to fade in a background when a specific slide state is reached -->
<div class="state-background"></div>
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1>Remotes.io</h1>
<h3>Remote control for the Web</h3>
</section>
<section>
<h2>Why?</h2>
<ul>
<li>Why not?</li>
<li>Tons of content is consumed on the Web</li>
<li>Constraint driven design yields interesting results</li>
<li>Tomorrow
<ul>
<li>TVs</li>
<li>Web enabled Objects (yes, your fridge)</li>
<li>Collaborative web powered real life experiences </li>
<li>God-knows-what</li>
</ul>
</li>
</ul>
</section>
<section>
<h2>How?</h2>
<ul>
<li>Use Web : ubiquity, flexibility, reach</li>
<li>Touch devices are your remotes</li>
<li>No buttons: tap, hold, swipe, drag, pinch</li>
<li>Developers : integration must be trivial</li>
<li>Users : sync process must be trivial</li>
</ul>
</section>
<section>
<img src="images/integration.png">
</section>
<section>
<h2>Use cases</h2>
<ul>
<li>Media apps (video, audio)</li>
<li>Gaming</li>
<li>Analytics, data visualization</li>
</ul>
</section>
<section>
<h2>What can I do?</h2>
<ul>
<li>Build something amazing using Remotes (20 points)</li>
<li>Patch existing web sites using Recipes (10 points)</li>
<li>Get involved:
<ul>
<li><a href="http://github.com/remotes/">http://github.com/remotes/</a> (5 points)</li>
<li><a href="mailto:[email protected]">[email protected]</a> (2 points, no spam)</li>
</ul>
</li>
</ul>
</section>
<section>
<h2>Thanks</h2>
</section>
</div>
<!-- The navigational controls UI -->
<!-- <aside class="controls">
<a class="left" href="#">◄</a>
<a class="right" href="#">►</a>
<a class="up" href="#">▲</a>
<a class="down" href="#">▼</a>
</aside> -->
<!-- Presentation progress bar -->
<div class="progress"><span></span></div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script type="text/javascript" src="https://raw.github.com/Remotes/Remotes/master/dist/remotes.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
theme: Reveal.getQueryHash().theme || 'default', // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'cube', // default/cube/page/concave/linear(2d)
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/highlight.js', async: true, callback: function() { window.hljs.initHighlightingOnLoad(); } },
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'lib/js/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'lib/js/data-markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: '/socket.io/socket.io.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } },
{ src: 'plugin/speakernotes/client.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } },
]
});
new Remotes("preview")
.on("swipe-left", function(e){ Reveal.navigateRight(); })
.on("swipe-right", function(e){ Reveal.navigateLeft(); })
.on("swipe-up", function(e){ Reveal.navigateDown(); })
.on("swipe-down", function(e){ Reveal.navigateUp(); })
.on("tap", function(e){
Reveal.toggleOverview();
})
.on("hold", function(e){
})
.on("release", function(){
});
</script>
</body>
</html>