forked from Anna-Assistant/Anna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
125 lines (125 loc) · 4.94 KB
/
popup.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Anna</title>
<link rel="stylesheet" href="./css/material.min.css">
<link rel="stylesheet" href="./css/popup.css">
<link rel="stylesheet" type="text/css" href="css/on-off-switch.css" />
</head>
<body>
<header>
<b>
<h1>Anna</h1>
</b>
</header>
<main>
<div class="mdl-tabs mdl-js-tabs mdl-js-ripple-effect">
<div class="mdl-tabs__tab-bar">
<a href="#settings" class="mdl-tabs__tab is-active"><b>Settings</b></a>
<a href="#new" class="mdl-tabs__tab "><b>New</b></a>
<a href="#popular" class="mdl-tabs__tab"><b>Popular</b></a>
</div>
<div class="mdl-tabs__panel is-active" id="settings">
<b>
<h5>Toggle the Features</h5>
</b>
<ul class="mdl-list">
<li class="mdl-list__item">
<span class="mdl-list__item-primary-content">
<span class="mdl-list__item-avatar">
<img src="./img/icon.png"/>
</span>
Activate
</span>
<span class="mdl-list__item-secondary-action">
<label class="onoff-switch">
<input type="checkbox" id="onoff-switch">
</label>
</span>
</li>
<li class="mdl-list__item">
<span class="mdl-list__item-primary-content">
<span class="mdl-list__item-avatar">
<img src="./img/icon.png"/>
</span>
Status Icon
</span>
<span class="mdl-list__item-secondary-action">
<label class="onoff-switch">
<input type="checkbox" id="status-icon">
</label>
</span>
</li>
</ul>
</div>
<div class="mdl-tabs__panel " id="new">
<ul class="features-list new">
<li class="feature">
<a href="#">
<span class="media">
<img src="http://droidlessons.com/wp-content/uploads/2016/11/Cogn_mode.png" alt="">
</span>
<span class="data">
<span class="title">
<strong>Safe Mode</strong>
</span>
<span class="description">
<i>"Safe Mode"</i><br>
<i>"Incognito"</i><br>
<i>"Private Browsing"</i>
</span>
</span>
</a>
</li>
</ul>
</div>
<div class="mdl-tabs__panel" id="popular">
<ul class="features-list popular">
<li class="feature">
<a href="#">
<span class="media">
<img src="img/icon.png" alt="">
</span>
<span class="data">
<span class="title">
<strong>Hey....</strong>
</span>
<span class="description">
<i>"Hey..." (followed by request)</i><br>
<i>"Hey Open Facebook"</i><br>
<i>"Hey Where is Delhi?"</i><br>
</span>
</span>
</a>
</li>
</ul>
<li class="feature">
<a href="#">
<span class="media">
<img src="http://cdn.iphonehacks.com/wp-content/uploads/2017/04/Google-Maps.png" alt="">
</span>
<span class="data">
<span class="title">
<strong>Google Maps</strong>
</span>
<span class="description">
<i>"Where is Delhi?"</i><br>
<i>"How to go from Bombay to Hyderabad ?"</i><br>
</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</main>
<script src='./js/vendor/jquery-3.2.0.min.js'></script>
<script src='./js/vendor/material.min.js'></script>
<script src='./js/popup.js'></script>
<script type="text/javascript" src="js/on-off-switch.js"></script>
<script type="text/javascript" src="js/on-off-switch-onload.js"></script>
<script type="text/javascript" src="js/on-off.js"></script>
</body>
</html>