forked from GeunH/2023-Capstone-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.html
91 lines (82 loc) · 2.14 KB
/
web.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
h2 {
margin-top: 20px;
font-size: 2em;
font-weight: bold;
font-family: Arial, sans-serif;
color: white;
text-transform: uppercase;
text-indent: 20px;
letter-spacing: 2px;
margin-bottom: 20px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-image: url('https://github.com/GeunH/2023-Capstone-design/blob/main/bground.png?raw=true');
background-size: cover;
background-position: center center;
background-attachment: fixed;
}
ul {
list-style: none;
}
#fileList {
color:White;
max-width: 220px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 20px;
}
#ingpFileList {
color: white;
max-width: 220px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 20px;
}
li {
margin: 10px 0;
display: flex;
align-items: center;
}
li label {
margin-left: 10px;
}
button {
margin: 20px;
padding: 10px 20px;
border: none;
background-color: #546372;
color: #fff;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
button:hover {
background-color: #0069d9;
}
</style>
<h2>거래 물품 사전 확인</h2>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>3D modeling View</title>
</head>
<body>
<ul id="fileList"></ul>
<ul id="ingpFileList"></ul>
<button id="ingpFunctionButton">Ingp 파일 기능</button>
<button id="customButton"> Modeling </button>
<canvas id="viewer" width="800" height="600"></canvas>
<script src="web.js"></script>
</body>
</html>