-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·78 lines (76 loc) · 3.3 KB
/
index.html
File metadata and controls
executable file
·78 lines (76 loc) · 3.3 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
<!DOCTYPE html>
<!--
* Copyright (c) 2014, Intel Corporation, Jaguar Land Rover
*
* This program is licensed under the terms and conditions of the
* Apache License, version 2.0. The full text of the Apache License is at
* http://www.apache.org/licenses/LICENSE-2.0
*
-->
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta charset="utf-8">
<meta name="viewport" content="width=1080, height=1920, user-scalable=no" />
<link rel="stylesheet" href="./css/style.css" />
<script type="text/javascript" src="./DNA_common/components/jQuery/jquery-1.8.2.js"></script>
<link rel="stylesheet" href="./DNA_common/css/style.css" />
<script type="text/javascript" src="./DNA_common/js/init.js"></script>
<script type="text/javascript" src="./DNA_common/js/dnaTime.js"></script>
<!--script type="text/javascript">
includeJs("./js/predefAppModel.js");
includeJs("./js/installedApps.js");
includeJs("./js/keyControl.js");
includeJs("./js/actionCatcher.js");
includeJs("./js/main.js");
</script-->
<meta content="DNA structure animation using HTML5, canvas, Javascript js." name="description">
<meta content="Kasen Lam, Steve Mattison" name="author">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<link href="/favicon.ico" rel="shortcut icon">
<title>DNA Model using HTML5</title>
</head>
<body data-twttr-rendered="true">
<div id="top-bar"></div>
<div id="center-panel">
<div id="app">
<div id="canvasContainer">
<canvas height="1917" width="1080" id="dnaCanvas">
Sorry, your browser does not support the canvas element. You need to check this page in a browser that supports HTML5 canvas (like current version of Chrome, Opera, Firefox or Safari).
</canvas>
</div>
<div id="overlay">
<div id="clockElement"></div>
<div id="home-stats" class="flex-parent space-between">
<div id="lefties">
<div id="fuel" class="DNAfence">
<div id="fuelTitle" class="DNAtitle">Fuel</div>
<div id="batteryStatus" class="DNAwidget">60%</div>
</div>
<div id="speedo" class="DNAfence">
<div id="homeScrSpeed" class="DNAwidget">45<span id="sector7SpeedUnits" class="DNAtitle">MPH</span></div>
</div>
</div>
<div id="righties">
<div id="weatherInfo" class="DNAfence">
<div id="weatherStatus" class="DNAtemp">29° C</div>
<div id="weatherLoc" class="DNAtitle">Portland OR</div>
</div>
<div id="condition" class="DNAfence">
<div id="tempTitle" class="DNAtitle">Int. Temp</div>
<div id="fanStatus" class="DNAtemp">18° C</div>
</div>
</div>
</div>
</div>
<div id="head">
<img src="images/HomeHex.png" id="nucleotide">
<img src="images/Particle-Stream.gif" id="Particle">
<img src="images/galaxy.gif" id="Particle2">
</div>
</div>
<script src="js/dnaModel.js"></script>
</div>
<div id="bottom-bar"></div>
</body>
</html>