김한준

기본 주소로 접속시 첫화면

1 +<!DOCTYPE html>
2 +<html lang="ko">
3 +
4 +<html>
5 +
6 +<head>
7 +
8 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
9 + <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
10 + <meta name="theme-color" content="#212121" />
11 + <title>로또 번호 생성기</title>
12 + <link rel="stylesheet" type="text/css" href="/style.css">
13 + <script src="/jquery.js" type="text/javascript"></script>
14 + <script src="/coloring.js" type="text/javascript"></script>
15 + <script src="/main.js" type="text/javascript"></script>
16 + <script src="/sub__scroll.js" type="text/javascript"></script>
17 + <script defer="" type="text/javascript" src="http://lotto.kaisyu.com/api?method=get&amp;callback=loadlot"></script>
18 +
19 + <script language="javascript">
20 +<!--
21 +function getSelectValue(frm)
22 +{
23 + frm.textValue.value = frm.selectBox.options[frm.selectBox.selectedIndex].text;
24 +}
25 +//-->
26 +</script>
27 +
28 +</head>
29 +
30 +<body>
31 +
32 +
33 + <H2>로또 번호 생성 & 당첨 확인</H2>
34 + <p>로또 번호를 생성하고 각 회차의 당첨번호와 비교합니다</p>
35 + <p>회차 선택시 1등 당첨번호가 바뀌며 선택한 회차의 당첨번호와</p>
36 + <p>생성한 당첨번호를 비교하여 각 등수의 당첨확률을 보여줍니다</p>
37 + <p>회차선택시 번호 변경은 현재 수정하고 있습니다</p>
38 +
39 + <form name="form">
40 + <select name="selectBox" onchange="getSelectValue(this.form);">
41 + <option>로또회차선택</option>
42 + <script>
43 + for(i=1;i<861;i++){
44 + document.write("<option>"+i+"</option>");
45 + }
46 + </script>
47 + </select>
48 + </form>
49 +
50 + <p style="position:absolute;top:calc(50% + 100px);width:100%;">
51 + <input type="text" id="inputnum" value="5" size="2"><span class="key" onclick="count()">시작</span>
52 + </p>
53 +
54 +
55 + <section id="winner" class="shadow">
56 + <h2 id="lottok">loading...</h2>
57 + <div class="output" id="output0"></div>
58 + <div class="output" id="output1"></div>
59 + <div class="output" id="output2"></div>
60 + <div class="output" id="output3"></div>
61 + <div class="output" id="output4"></div>
62 + <div class="output" id="output5"></div>
63 + <div class="output" style="box-shadow:none; color:#000;">+</div>
64 + <div class="output" id="output6"></div>
65 + </section>
66 + <div id="stats"></div>
67 +
68 + <ol id="lottotable"></ol>
69 +
70 +
71 +
72 + <!-- <footer>ⓒ 2011-2019 JinH</footer> -->
73 +
74 +</body>
75 +
76 +</html>