Spaces:
Sleeping
Sleeping
Update static/index.html
Browse files- static/index.html +73 -64
static/index.html
CHANGED
|
@@ -1,65 +1,74 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html lang="en">
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="UTF-8">
|
| 5 |
-
<title>Focus Guard</title>
|
| 6 |
-
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap" rel="stylesheet">
|
| 7 |
-
<link rel="stylesheet" href="styles.css">
|
| 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 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<title>Focus Guard</title>
|
| 6 |
+
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap" rel="stylesheet">
|
| 7 |
+
<link rel="stylesheet" href="styles.css">
|
| 8 |
+
<!-- CSS -->
|
| 9 |
+
<link rel="stylesheet" href="/static/styles.css" />
|
| 10 |
+
|
| 11 |
+
<!-- Font -->
|
| 12 |
+
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
|
| 13 |
+
</head>
|
| 14 |
+
<body>
|
| 15 |
+
<h1>Focus Guard</h1>
|
| 16 |
+
<!-- JS -->
|
| 17 |
+
<script src="/static/script.js"></script>
|
| 18 |
+
|
| 19 |
+
<!-- Top Menu -->
|
| 20 |
+
<nav id="top-menu">
|
| 21 |
+
<button id="menu-start" class="menu-btn">Start Focus</button>
|
| 22 |
+
<div class="separator"></div>
|
| 23 |
+
<button id="menu-achievement" class="menu-btn">My Achievement</button>
|
| 24 |
+
<div class="separator"></div>
|
| 25 |
+
<button id="menu-records" class="menu-btn">My Records</button>
|
| 26 |
+
<div class="separator"></div>
|
| 27 |
+
<button id="menu-customise" class="menu-btn">Customise</button>
|
| 28 |
+
<div class="separator"></div>
|
| 29 |
+
<button id="menu-help" class="menu-btn">Help</button>
|
| 30 |
+
</nav>
|
| 31 |
+
<!-- Page A -->
|
| 32 |
+
<main id="page-a" class="page">
|
| 33 |
+
<h1>Focus Guard</h1>
|
| 34 |
+
<p>Your productivity monitor assistant.</p>
|
| 35 |
+
<button id="start-button" class="btn-main">Start</button>
|
| 36 |
+
</main>
|
| 37 |
+
<!-- Page B -->
|
| 38 |
+
<main id="page-b" class="page hidden">
|
| 39 |
+
<!-- 1. Camera / Display Area -->
|
| 40 |
+
<section id="display-area">
|
| 41 |
+
<p id="display-placeholder">Nothing</p>
|
| 42 |
+
</section>
|
| 43 |
+
|
| 44 |
+
<!-- 2. Timeline Area -->
|
| 45 |
+
<section id="timeline-area">
|
| 46 |
+
<div class="timeline-label">Timeline</div>
|
| 47 |
+
<div id="timeline-visuals"></div>
|
| 48 |
+
<div id="timeline-line"></div>
|
| 49 |
+
</section>
|
| 50 |
+
|
| 51 |
+
<!-- 3. Control Buttons -->
|
| 52 |
+
<section id="control-panel">
|
| 53 |
+
<button id="btn-cam-start" class="action-btn green">Start</button>
|
| 54 |
+
<button id="btn-floating" class="action-btn yellow">Floating Window</button>
|
| 55 |
+
<button id="btn-models" class="action-btn blue">Models</button>
|
| 56 |
+
<button id="btn-cam-stop" class="action-btn red">Stop</button>
|
| 57 |
+
</section>
|
| 58 |
+
|
| 59 |
+
<!-- 4. Frame Control -->
|
| 60 |
+
<section id="frame-control">
|
| 61 |
+
<label for="frame-slider">Frame</label>
|
| 62 |
+
<input type="range" id="frame-slider" min="1" max="60" value="30">
|
| 63 |
+
<input type="number" id="frame-input" value="30">
|
| 64 |
+
</section>
|
| 65 |
+
</main>
|
| 66 |
+
|
| 67 |
+
<main id="page-c" class="page hidden"><h1>My Achievement</h1><p>Coming Soon</p></main>
|
| 68 |
+
<main id="page-d" class="page hidden"><h1>My Records</h1><p>Coming Soon</p></main>
|
| 69 |
+
<main id="page-e" class="page hidden"><h1>Customise</h1><p>Coming Soon</p></main>
|
| 70 |
+
<main id="page-f" class="page hidden"><h1>Help</h1><p>Coming Soon</p></main>
|
| 71 |
+
|
| 72 |
+
<script src="script.js"></script>
|
| 73 |
+
</body>
|
| 74 |
</html>
|