-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
29 lines (29 loc) · 930 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/icon/logo.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chrome Extension + Vanilla + JS + Vite</title>
</head>
<body>
<div id="app"></div>
<div id="overlay">
<div id="title">Pomoji</div>
<div id="time" aria-live="polite">
<span id="timer" aria-atomic="true"></span>
</div>
<div id="controls" role="group" aria-label="Timer controls">
<button
id="startAndPause"
class="toggle"
aria-label="Start timer"
></button>
<button id="resetbutton" aria-label="Start timer">reset</button>
<button id="backgroundMusic" aria-label="music">play</button>
</div>
<div id="lofiCard"></div>
</div>
<script type="module" src="/src/popup/index.js"></script>
</body>
</html>