File size: 819 Bytes
d3dd837 836cc89 d3dd837 836cc89 d3dd837 836cc89 d3dd837 |
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 |
<!DOCTYPE html>
<html lang="en">
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portrait Matting demo</title>
</head>
<body>
<main class="container">
<label class="custom-file-select">
<input id="file-select" type="file" accept="image/*" />
select image
</label>
<p id="status"></p>
<div class="wrap">
<div id="image-container" class="left-column"></div>
<div id="output-container" class="right-column"></div>
</div>
</main>
<script src="./index.js" type="module"></script>
</body>
</html> |