-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (62 loc) · 2.72 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>그림 관리</title>
<link rel="stylesheet" type="text/css" href="art.css" />
<script type="text/javascript" src="art.js"></script>
</head>
<body>
<nav>
<h3>메타버스 전시관 관리자 페이지</h3>
</nav>
<div class="container">
<div class="setting">
<div class="box">
<h1>조명 관리</h1>
<form method="post" action="/light">
<p>색상 : <input type="color" id="light_color" name="light_color"></p>
<P>밝기 : <input type="range" min="4" max="16" value="8" class="slider" id="light_range"
name="light_range"></P>
<p>각도 : <input type="range" min="60" max="179" value="165" class="slider" id="light_angle"
name="light_angle"></p>
<input class="button" type="submit" value="조명 적용" name="submit">
</form>
</div>
<div class="box">
<h1>음악 관리</h1>
<p>현재 재생중 : <span id="bgm_current">없음</span></p>
<form enctype="multipart/form-data" method="post" action="/bgm">
<input type="hidden" name="order" value="0">
<p><input type="file" name="audio"></p>
<p>음악 사용 여부 : <input type="checkbox" class="use-bgm" onchange="bgm()"></p>
<p><input class="button" type="submit" value="음악 업로드" name="submit"></p>
</form>
</div>
<div class="box sticky">
<h1>전시관 구조</h1>
<img src="./gall.png" id="gall">
</div>
</div>
<div class="box">
<h1>그림 관리</h1>
<div class="picture">
</div>
</div>
</div>
<div class="info_container">
<div class="info_box box">
<h1>설명 추가</h1>
<input type="hidden" id="info_idx" name="order" value="0">
<p>제목 <input type="text" id="info_title" name="title"></p>
<p>작가 <input type="text" id="info_artist" name="artist"></p>
<p>설명</p>
<textarea rows="5" id="info_explan" name="explan"></textarea>
<input class="button" type="submit" value="설명 적용" onclick="setInfo()" name="submit">
<button class="button" style="background-color: red; color: white" onclick="hide_info()">취소</button>
</div>
</div>
</body>
</html>