-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 911 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Photon</title>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<canvas id="image-canvas"></canvas>
<canvas id="selection-canvas" tabindex="1"></canvas>
<dialog id="resize-dialog">
<form method="dialog">
<div class="form-group">
<label for="resize-width">Width</label><br>
<input id="resize-width" type="number" min="1" max="999999" required />
<span>x</span>
</div>
<div class="form-group">
<label for="resize-height">Height</label><br>
<input id="resize-height" type="number" min="1" max="999999" required />
<button id="resize-submit" type="submit">Resize</button>
</div>
</form>
</dialog>
<script src="photon.js"></script>
<script src="index.js"></script>
</body>
</html>