Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김한준
/
OSS-Term-Project
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김한준
2019-05-31 19:57:39 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0d7549ce935d01541e50e31eb94ea3380d8b0826
0d7549ce
1 parent
2a52448e
기본 주소로 접속시 첫화면
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
76 additions
and
0 deletions
public/index.html
public/index.html
0 → 100644
View file @
0d7549c
<!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>
Please
register
or
login
to post a comment