forked from pubnub/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (39 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
49 lines (39 loc) · 1.29 KB
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
<!doctype html>
<html>
<head>
<!-- Hey, let's be friends! twitter.com/pubnub -->
<meta http-equiv=content-type content=text/html;charset=utf-8>
<meta name=viewport content=width=device-width>
<meta name=viewport content=initial-scale=1.0>
<meta name=viewport content=user-scalable=no>
<meta name=apple-mobile-web-app-capable content=yes>
<meta name=apple-mobile-web-app-status-bar-style content=black>
<link rel=apple-touch-icon href=icon.png>
<link rel=apple-touch-startup-image href=startup.png>
<title>PubNub ★ Socket.IO Bootstrap</title>
<link
href=http://fonts.googleapis.com/css?family=Open+Sans:400,700
rel=stylesheet>
<link href=styles.css rel=stylesheet>
</head>
<body>
<!-- STAGE OF CONNECTIVITY -->
<div id=stages>
<div class=indicator></div>
<div class=indicator></div>
<div class=indicator></div>
</div>
<div id=stages-shine></div>
<!-- BUTTON PRESS INDICATOR -->
<div id=button-light>Touch Detected</div>
<!-- SIMPLE BUTTON -->
<button id=button>Connecting...</div>
<audio id="notify" preload=auto autobuffer>
<source src=notify.ogg>
<source src=notify.mp3>
</audio>
<script>scrollTo(0,1);</script>
<script src=http://pubnub.s3.amazonaws.com/socket.io.min.js></script>
<script src=app.js></script>
</body>
</html>