-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (69 loc) · 2.67 KB
/
Copy pathindex.html
File metadata and controls
69 lines (69 loc) · 2.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<title>TimeManagement</title>
</head>
<body>
<div class="title">TIME MANAGEMENT</div>
<form id="todo-form">
<input type="text" class="form-text-box" name="todo-text" placeholder="Write What To Do!" required />
<div id="stars" class="rating" aria-required="true">
<!-- 좌우대칭해서 만들었기 때문에 value는 반대로 설정했음 -->
<input type="radio" id="star1" name="rating" value="5" />
<label for="star1">★</label>
<input type="radio" id="star2" name="rating" value="4" />
<label for="star2">★</label>
<input type="radio" id="star3" name="rating" value="3" />
<label for="star3">★</label>
<input type="radio" id="star4" name="rating" value="2" />
<label for="star4">★</label>
<input type="radio" id="star5" name="rating" value="1" />
<label for="star5">★</label>
</div>
<input type="datetime-local" name="todo-start" class="form-time-box" />
<input type="datetime-local" name="todo-end" class="form-time-box" />
<input type="submit" value="click" />
</form>
<div class="slider-container">
<button id="pre">◀</button>
<input type="range" min="1" max="52" id="week_slider" class="hidden" />
<input type="range" min="1" max="7" id="day_slider" class="hidden" />
<input type="range" min="1" max="24" id="hour_slider" value="24" />
<input type="range" min="1" max="60" id="minute_slider" class="hidden" />
<input type="range" min="1" max="60" id="second_slider" class="hidden" />
<button id="next">▶</button>
<p>Value: <span id="value"></span></p>
</div>
<div id="canvas-container">
<canvas id="todoCanvas"></canvas>
</div>
<div id="left-panel">
<ul id="todo-list">
<li id="index">
<span>할 일</span>
<span>중요도</span>
<span>시작시간</span>
<span>끝시간</span>
</li>
</ul>
</div>
<div id="right-panel">
<ul id="todo-list">
<li id="index">
<span>할 일</span>
<span>중요도</span>
</li>
</ul>
</div>
<script src="js/time.js"></script>
<script src="js/todoform.js"></script>
<script src="js/slider.js"></script>
<script src="js/onaxis.js"></script>
<script src="js/ontodo.js"></script>
<script src="js/frame.js"></script>
</body>
</html>