-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (57 loc) · 2.96 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
<!DOCTYPE html>
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<title>배고프다 - 메뉴 결정 도우미</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.css">
<link href='https://cdn.rawgit.com/openhiun/hangul/14c0f6faa2941116bb53001d6a7dcd5e82300c3f/nanumbarungothic.css' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="semantic-ui-range/range.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/jquery-3.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.13/semantic.min.js"></script>
<script src="semantic-ui-range/range.js" type="text/javascript"></script>
</head>
<body>
<div id="wrapper">
<div class="ui inverted vertical masthead center aligned segment" id="header">
<div class="ui text container">
<h1 class="ui inverted header" style="margin: 0;">
메뉴 결정 도우미 <a href="https://github.com/joonas-yoon/MenuSelectHelper" class="ui basic label"><i class="github alternate icon"></i> v0.2.5</a>
</h1>
<p><a href="index.html">main</a> | <a href="about.html">about</a></p>
</div>
</div>
<div class="ui vertical segment">
<div class="ui container" style="text-align: center; margin: 2em auto;" id="pageSet">
<div class="ui segment">
<h2>배고픈 정도</h2>
<div class="ui range" id="rangeSpeed"></div>
<input type="hidden" value="500" id="inputRangeSpeed" />
</div>
<button class="ui huge primary button" id="buttonStart">도와줘요!</button>
<div id="page1" class="step page"></div>
<div id="page2" class="step page"></div>
<div id="page3" class="step page"></div>
<div id="page4" class="step page"></div>
<div id="page5" class="step page"></div>
<div id="page6" class="step page"></div>
</div>
</div>
</div>
<div class="ui black inverted vertical footer segment" id="footer">
<div class="ui text container">
<p
id="supportedBrowsers"
data-tooltip="Edge 15+, Firefox 56+, Chrome 61+, Safari 10.1+">
이 사이트를 정상적으로 사용하시려면 비동기 속성을 지원하는 브라우저가 필요합니다.<br>
<a href="https://caniuse.com/#search=async" target="_blank">이 곳</a>에서 지원 가능한 브라우저를 확인하세요.
</p>
<p>2019년 11월까지 91.76%의 브라우저가 <a href="https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Statements/async_function" target="_blank">이 기능</a>을 지원하고 있습니다.</p>
</div>
</div>
</body>
<script async="true" type="text/javascript" src="js/menuSelector.js"></script>
</html>