-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (108 loc) · 3.62 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
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="theme-color" content="#ec4945" />
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="images/favicon.ico">
<!-- toastr css 라이브러리 -->
<link
rel="stylesheet"
type="text/css"
href="http://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css"
/>
<link rel="shortcut icon" href="./images/favicon.ico">
<title id="title">Minute Timer</title>
</head>
<body>
<div id="speech">
<div class="balloon top"><span>시간 설정</span></div>
</div>
<!--end speeech-->
<div id="content">
<div id="f5Text">
<div id="text" style="margin-bottom: -25px;">
<span id="minutes">3</span> <span> minutes Timer</span>
</div>
<!--end text-->
</div>
<!--end f5Text-->
<!--modal pop-up-->
<div class="background">
<div class="window">
<div class="popup">
<button id="close">X</button>
<form>
<div class="select">
<input id="hour" type="number" placeholder="시간" />
<input id="min" type="number" placeholder="분" />
<input id="sec" type="number" placeholder="초" />
</div>
<!--end select-->
<br />
<br />
<div id="colorBox">
<div id="clColor">
<span class="popupText">시계 색상</span>
<div class="cp_wrapper">
<input id="clockColor" type="color" value="#ff6e6e" />
</div>
<!--end cp_wrapper-->
</div>
<!--end clColor-->
<div id="bgColor">
<span class="popupText">배경 색상</span>
<div class="cp_wrapper">
<input id="backColor" type="color" value="#c5e1ff" />
</div>
<!--end cp_wrapper-->
</div>
<!--end bgColor-->
</div>
<!--end colorBox-->
<!--end cp_wrapper-->
<div class="wrapper">
<input type="reset" id="formReset" value="기본값" />
<button type="button" id="submit">적용</button>
</div>
<!--end wrapper-->
</form>
</div>
<!--end popup-->
</div>
<!--end window-->
</div>
<!--end background-->
<div class="zoomContents">
<div id="buttons">
<button id="timerButton" class="start">시작</button>
<button id="reset">초기화</button>
</div>
<!--end buttons-->
<div class="clockBox">
<div id="f5">
<div id="timer">
<div id="mask"></div>
<!--end mask-->
</div>
<!--end timer-->
</div>
</div>
<!--end clockBox, #f5-->
</div>
<!--end zoomContents-->
</div>
<!--end content-->
<!--<button id="fullButton">전체화면</button>-->
<div class="toast">Error</div>
<script src="script.js"></script>
<!-- toastr js 라이브러리 -->
<script
type="text/javascript"
src="http://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"
></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
</body>
</html>