forked from AdamVig/battery-indicator-element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (100 loc) · 3.02 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Battery Status Indicator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: sans-serif;
}
h2 {
margin-bottom: 0;
}
.container {
width: 48px;
}
.container.show-percentage {
width: 100px;
}
battery-indicator.themed {
--charge-fill: green;
}
.container.small {
width: 24px;
}
.container.medium {
width: 48px;
}
.container.large {
width: 144px;
}
</style>
</head>
<body>
<h1>Battery Indicator Element</h1>
<h2>Without Percentage</h2>
<h3>10%</h3>
<div class="container">
<battery-indicator percentage="10"></battery-indicator>
</div>
<h3>Themed</h3>
<div class="container">
<battery-indicator class="themed" percentage="50" state="charging"></battery-indicator>
</div>
<h3>75% charged</h3>
<div class="container">
<battery-indicator percentage="75" state="charging"></battery-indicator>
</div>
<h3>Alert</h3>
<div class="container">
<battery-indicator state="alert"></battery-indicator>
</div>
<h3>Unknown</h3>
<div class="container">
<battery-indicator state="unknown"></battery-indicator>
</div>
<h3>With Percentage</h3>
<div class="container show-percentage">
<battery-indicator percentage="50" show-percentage></battery-indicator>
</div>
<h3>Responsive</h3>
<h4>Without Percentage</h4>
<h4>24px wide</h4>
<div class="container small"><battery-indicator percentage="25"></battery-indicator></div>
<h4>48px wide</h4>
<div class="container medium"><battery-indicator percentage="50"></battery-indicator></div>
<h4>144px wide</h4>
<div class="container large"><battery-indicator percentage="75"></battery-indicator></div>
<h4>With Percentage</h4>
<h4>24px wide</h4>
<div class="container show-percentage small"><battery-indicator percentage="25" show-percentage></battery-indicator></div>
<h4>48px wide</h4>
<div class="container show-percentage medium"><battery-indicator percentage="50" show-percentage></battery-indicator></div>
<h4>144px wide</h4>
<div class="container show-percentage large"><battery-indicator percentage="75" show-percentage></battery-indicator></div>
<!-- TODO implement animation
<h3>Animated</h3>
<p>Animation is not yet implemented.</p>
<battery-indicator id="animated" percentage="0"></battery-indicator>
<script>
let increasing = true
function getNextPercentage(el, stepSize) {
if (el.percentage === 0) {
increasing = true
} else if (el.percentage === 100) {
increasing = false
}
if (increasing === true) {
return el.percentage + stepSize
} else {
return el.percentage - stepSize
}
}
const stepSize = 10
const el = document.querySelector('battery-indicator#animated')
setInterval(() => el.percentage = getNextPercentage(el, stepSize), 1000)
</script> -->
</body>
</html>