-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.15 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.15 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link href="./css/styles.css" rel="stylesheet" />
<title>pegasus - give wings to pixels</title>
</head>
<body>
<div id="toolBox1">
<button title="resize" id="resizeBtn">
<img class="icon" src="assets/resize.ico" />
</button>
<button title="crop" id="cropBtn">
<img class="icon" src="assets/crop.ico" />
</button>
<button title="filter" id="filterBtn">
<img class="icon" src="assets/filter.ico" />
</button>
<button title="rotate" id="rotateBtn">
<img class="icon" src="assets/rotate.ico" />
</button>
<button title="paint" id="paintBtn">
<img class="icon" src="assets/paint.ico" />
</button>
<button title="image_analysis" id="image_analysisBtn">
<img class="icon" src="assets/image_analysis.ico" />
</button>
</div>
<!-- ImgKit UI Container (loaded dynamically) -->
<div id="imgkit-container"></div>
<!-- Load ImgKit UI components -->
<script src="./utils/ui_loader.js"></script>
<script src="./renderer/main_renderer.js"></script>
</body>
</html>