-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (56 loc) · 2.07 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
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html lang="en" data-ng-app="App">
<head>
<meta charset="UTF-8">
<title>Clarity</title>
<!--Ionic Libs-->
<link rel="stylesheet" href="lib/ionic/css/ionic.css">
<script src="lib/ionic/js/ionic.bundle.js"></script>
<script src="cordova.js"></script>
<!--My app-->
<link rel="stylesheet" href="css/style.css">
<script src="js/app.js"></script>
</head>
<body data-ng-controller="AppCtrl">
<div class="logo"> <img alt="Company Logo" height="99px" src="img/clarity.jpg"></div>
<ion-content class="has-header">
<ion-spinner icon="ripple" ng-show="goCats" id="myspin"></ion-spinner>
<div class="round-button" id="homepage" ng-show="!goCats">
<div class="round-button-circle">
<a class="round-button" href="" ng-click="goCats = !goCats; match()">Start Scan</a>
</div>
</div>
<div class="trythis" id="secondpage">
<img alt="graph" style=" width: 100%;" src="img/graph.png">
<img alt="map" style=" width: 100%;" src="img/map.png">
<ion-list>
<div ng-repeat="group in groups">
<ion-item class="item-stable" ng-click="toggleGroup(group)" ng-class="{active: isGroupShown(group)}">
<i class="icon" ng-class="isGroupShown(group) ? 'ion-minus' : 'ion-plus'"></i>
{{group.name}}
</ion-item>
<ion-item class="item-accordion" ng-repeat="item in group.items" ng-show="isGroupShown(group)">
{{item}}
</ion-item>
</div>
</ion-list>
</div>
</ion-content>
<ion-footer-bar>
<div class="tabs-striped tabs-background-positive tabs-color-light">
<div class="tabs">
<a class="tab-item" ng-click="backhome()">
<i class="icon ion-home"></i>
</a>
<a class="tab-item">
<i class="icon ion-clock"></i>
</a>
<a class="tab-item">
<i class="icon ion-planet"></i>
</a>
</div>
</div>
</ion-footer-bar>
</body>
</html>