-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (83 loc) · 2.99 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script defer src="app.js"></script>
<title>한국 박스오피스 포스터</title>
</head>
<body>
<header>
<h1>KOBOP(KOrean Box Office Poster)</h1>
<p>국내 박스오피스 상위 10위의 영화 포스터 이미지를 조회합니다.</p>
<p><a href="https://www.kobis.or.kr/kobisopenapi/homepg/main/main.do">영화진흥위원회 OPEN API</a>와 <a href="https://developer.themoviedb.org/docs/getting-started">TMDB API</a>를 활용하여 제작하였습니다.</p>
<p><strong>두 서비스의 API Key 및 Token이 필요합니다.</strong></p>
<form>
<div>
<label for="kobisApiKey">영화진흥위원회 API Key:</label>
<input type="text" id="kobisApiKey" name="kobisApiKey" required>
</div>
<div>
<label for="tmdbApiKey">TMDB API 읽기 액세스 토큰:</label>
<input type="text" id="tmdbApiKey" name="tmdbApiKey" required>
</div>
<button type="submit" id="submitBtn">조회</button>
</form>
</header>
<main>
<section>
<h2>일간 박스오피스 (<span id="targetDate"></span> 기준)</h2>
<table id="boxOffice">
<thead>
<tr>
<th>순위</th>
<th>영화명(국문)</th>
<th>영화 대표코드</th>
</tr>
</thead>
<tbody>
<!-- 호출된 영화 박스오피스 -->
</tbody>
</table>
</section>
<section>
<h2>영화 상세정보</h2>
<table id="movieInfo">
<thead>
<tr>
<th>영화 대표코드</th>
<th>영화명 영문(영문)</th>
</tr>
</thead>
<tbody>
<!-- 호출된 영화 상세정보 -->
</tbody>
</table>
</section>
<section>
<h2>SEARCH - Movie</h2>
<table id="posterLink">
<thead>
<tr>
<th>영화명(영문)</th>
<th>포스터 이미지 링크</th>
</tr>
</thead>
<tbody>
<!-- 호출된 영화 포스터 이미지 링크 -->
</tbody>
</table>
</section>
<section>
<h2>호출 결과</h2>
<ol id="posterImg">
<!-- 호출 결과 -->
</ol>
</section>
</main>
<footer>
<p>Developed by <a href="https://github.com/Builter251/KOBOP">builter251</a></p>
</footer>
</body>
</html>