-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,user-scalable=no">
<title>Circular UI</title>
<link rel="stylesheet" href="lib/tau/wearable/theme/default/tau.min.css">
<link rel="stylesheet" media="all and (-tizen-geometric-shape: circle)" href="lib/tau/wearable/theme/default/tau.circle.min.css">
<!-- load theme file for your application -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- -->
<div id="main" class="ui-page" data-enable-page-scroll="false">
<div id="sectionchanger" class="ui-content">
<!--Section changer has only one child-->
<div>
<div class="container">
<section id="0">
<div class="PVcir">
<h3>Home</h3>
<p id="p0">kW</p>
</div>
</section>
<section id="1">
<div class="PWcir">
<h3>PowerWall</h3>
<p id="p1">0 kW</p>
</div>
</section>
<section id="2">
<div class="HMcir">
<h3>Solar</h3>
<p id="p2">0 kW</p>
</div>
</section>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/fetch.js"></script>
<script type="text/javascript" src="js/rotate.js"></script>
<script type="text/javascript" src="lib/tau/wearable/js/tau.min.js"></script>
<script type="text/javascript" src="js/circle-helper.js"></script>
<script src="app.js"></script>
<script src="lowBatteryCheck.js"></script>
</body>
</html>