forked from petehunt/react-touch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (46 loc) · 1.46 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>React Touch Demos</title>
<meta name="viewport" content="width=device-width" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Hamburger icons -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet" />
<!-- Zynga Scroller -->
<script type="text/javascript" src="http://zynga.github.io/scroller/src/Raf.js"></script>
<script type="text/javascript" src="http://zynga.github.io/scroller/src/Animate.js"></script>
<script type="text/javascript" src="http://zynga.github.io/scroller/src/Scroller.js"></script>
<!-- Stats.js -->
<script type="text/javascript" src="thirdparty/stats.min.js"></script>
<style type="text/css">
html,
body {
background: black;
height: 100%;
margin: 0;
overflow: hidden;
padding: 0;
width: 100%;
}
#react-root {
height: 100%;
width: 100%;
}
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
}
</style>
</head>
<body>
<div id="react-root">
<h1>If you see this, something is broken (or JS is not enabled).</h1>
</div>
<script type="text/javascript" src="build/main.js"></script>
</body>
</html>