-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 862 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>마스크 엣지 검출</title>
<style>
.mask canvas{
background-color: #2c2c2c;
}
.imgBox {
height: auto;
padding: 10px;
margin-top: 0;
text-align: center;
display: inline-block;
}
h2 {
width: 100%;
text-align: center
}
canvas {
box-sizing: border-box;
/*width: 100%;*/
width: 600px;
height: auto;
image-rendering: -webkit-optimize-contrast;
border: 10px gray solid;
}
.mask canvas {
border: 15px gray solid;
}
.edge canvas {
border: 15px #000b39 solid;
}
</style>
</head>
<body>
<h2>엣지 검출</h2>
<script src="js/bundle.js"></script>
</body>
</html>