index.html
2.24 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
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="ko">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="theme-color" content="#212121" />
<title>로또 번호 생성기</title>
<link rel="stylesheet" type="text/css" href="/style.css">
<script src="/jquery.js" type="text/javascript"></script>
<script src="/coloring.js" type="text/javascript"></script>
<script src="/main.js" type="text/javascript"></script>
<script src="/sub__scroll.js" type="text/javascript"></script>
<script defer="" type="text/javascript" src="http://lotto.kaisyu.com/api?method=get&callback=loadlot"></script>
<script language="javascript">
<!--
function getSelectValue(frm)
{
frm.textValue.value = frm.selectBox.options[frm.selectBox.selectedIndex].text;
}
//-->
</script>
</head>
<body>
<H2>로또 번호 생성 & 당첨 확인</H2>
<p>로또 번호를 생성하고 각 회차의 당첨번호와 비교합니다</p>
<p>회차 선택시 1등 당첨번호가 바뀌며 선택한 회차의 당첨번호와</p>
<p>생성한 당첨번호를 비교하여 각 등수의 당첨확률을 보여줍니다</p>
<p>회차선택시 번호 변경은 현재 수정하고 있습니다</p>
<form name="form">
<select name="selectBox" onchange="getSelectValue(this.form);">
<option>로또회차선택</option>
<script>
for(i=1;i<861;i++){
document.write("<option>"+i+"</option>");
}
</script>
</select>
</form>
<p style="position:absolute;top:calc(50% + 100px);width:100%;">
<input type="text" id="inputnum" value="5" size="2">번 <span class="key" onclick="count()">시작</span>
</p>
<section id="winner" class="shadow">
<h2 id="lottok">loading...</h2>
<div class="output" id="output0"></div>
<div class="output" id="output1"></div>
<div class="output" id="output2"></div>
<div class="output" id="output3"></div>
<div class="output" id="output4"></div>
<div class="output" id="output5"></div>
<div class="output" style="box-shadow:none; color:#000;">+</div>
<div class="output" id="output6"></div>
</section>
<div id="stats"></div>
<ol id="lottotable"></ol>
<!-- <footer>ⓒ 2011-2019 JinH</footer> -->
</body>
</html>