-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage.html
45 lines (35 loc) · 1.11 KB
/
image.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>View pictures-Aillery</title>
<link rel="shortcut icon" href="media/app/img/logo.png" type="image/png" />
<link rel="stylesheet" href="css/image.css"/>
<script type="module" src="js/image.js">
</script>
</head>
<body>
<!--
The image viewing section rendering the image in its
real size.
-->
<header>
<div class="back-btn" data-back-btn>
←
</div>
<div class="image-name" data-image-name>
</div>
</header>
<canvas class="image-view" data-image-view>
Not Supported !
</canvas>
<footer>
<input type="button" value="Draw" class="edit-image btm-btn" data-edit-image/>
<input type="button" value="Save" class="save-image btm-btn hidden-btn" data-save-image/>
<input type="color" class="choose-pen-color btm-btn" data-choose-pen-color/>
<input type="number" value="5" class="choose-pen-width btm-btn" data-choose-pen-width/>
</footer>
</body>
</html>