-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpopup.html
46 lines (46 loc) · 1.27 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
<!-- popup.html: browser popup -->
<html>
<head>
<title>ChromeOS LivePaper</title>
<link rel="favicon" href="icon.svg" />
<link rel="stylesheet" href="stylesheet.css" />
<script src="popup.js" defer></script>
</head>
<style>
body {
margin: 0 20px 0 20px;
height: 3.2in;
width: 2in;
}
</style>
<body>
<div class="inline-center">
<div style="margin-right: 10px;">
<label class="switch">
<input type="checkbox" id="enableSwitch">
<span class="slider round"></span>
</label>
</div>
<p>Enable live wallpaper</p>
</div>
<div class="inline-center">
<div style="margin-right: 10px;">
<label class="switch">
<input type="checkbox" id="windowMaxCheck">
<span class="slider round"></span>
</label>
</div>
<p>Stop live wallpaper when window maximized</p>
</div>
<div class="inline-center">
<div style="margin-right: 10px;">
<label class="switch">
<input type="checkbox" id="windowFocusCheck">
<span class="slider round"></span>
</label>
</div>
<p>Stop live wallpaper when window focused</p>
</div>
<button id="newPaper">Set a new wallpaper</button>
</body>
</html>