-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (86 loc) · 3.54 KB
/
index.html
File metadata and controls
92 lines (86 loc) · 3.54 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script type="text/javascript" src="jquery.js"></script>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" href="css/smoothness/jquery-ui-1.10.4.custom.min.css">
<link rel="stylesheet" href="style.css">
<script src="js/jquery-1.10.2.js"></script>
<script src="js/jquery.mousewheel.js"></script>
<!-- mouse wheel activity -->
<script src="js/jquery-ui-1.10.4.custom.min.js"></script>
<script src="script.js"></script>
<script src="console.js"></script>
<script type="text/javascript" src="http://cdn.dev.skype.com/uri/skype-uri.js"></script>
<script type="text/javascript" src="Skype.js"></script>
<title>DWD HTML5 Experiments - TronScape</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<div id="container"></div>
<!-- Skype call-->
<div id="SkypeCall"></div>
<audio id="audio-player" autoplay loop>
<!--this is commented out until the media files are added to the repo - by apeggs2000
=======
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" href="css/smoothness/jquery-ui-1.10.4.custom.min.css">
<link rel="stylesheet" href="style.css">
<script src="js/jquery-1.10.2.js"></script>
<script src="js/jquery.mousewheel.js"></script> <!-- mouse wheel activity -->
<script src="js/jquery-ui-1.10.4.custom.min.js"></script>
<script src="script.js"></script>
<script src="console.js"></script>
<<<<<<< HEAD
<title>2D Map Builder</title>
=======
<script type="text/javascript" src="http://cdn.dev.skype.com/uri/skype-uri.js"></script>
<title>DWD HTML5 Experiments - TronScape</title>
>>>>>>> FETCH_HEAD
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<div id="container"></div>
<!--Skype-->
<div id="SkypeCall"></div>
<audio id="audio-player" autoplay loop>
<!--this is commented out until the media files are added to the repo - by apeggs2000
>>>>>>> bb3ccbab84bfe3db9ab62d1172a3605d6b9a2733
<source src="../../_/media/Digi_Grid.mp3" type="audio/mp3"/>
<source src="../../_/media/digi_grid.ogg" type="audio/ogg"/>
<p>HTML5 Audio Not Supported here.</p>
-->
</audio>
<div id="bannerContainer">
<div id="logo">
<img id="logoImage" src="../../_/images/tronText.gif" />
</div>
<div id="options" style="float: left; color: #21C2BC">
<input type="checkbox" id="particles" class="checkOptions">Particles</input>
<input type="checkbox" id="pen" class="checkOptions">Light Pen</input>
<!-- <input type="checkbox" id="backGrid" class="checkOptions">Back Grid</input> -->
</div>
<!-- This line causes massive slowdown when linked remotely to jQuery UI (so I'm using custom local store) -->
<div id="slider" style="float: left; height:4px; width: 100px;"></div>
</div>
<div id="panel">
<div id="panelContainer">
<canvas id="world" class="canvasInitial">
<p>Sorry, you have no canvas support.</p>
</canvas>
<canvas id="vGrid1" class="canvasInitial"></canvas>
<canvas id="hGrid1" class="canvasInitial"></canvas>
</div>
</div>
<div id="canvasText">
<img src="../../_/images/gridAccess.png" />
</div>
<!--console stuff-->
<div id="console">
<input id="consoleBox" />
</div>
</body>
</html>