forked from NaturalIntelligence/imglab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
v2.html
116 lines (104 loc) · 4.16 KB
/
v2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119603824-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-119603824-1');
</script>
<title>ImgLab</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/slider.1.css">
<link rel="stylesheet" href="css/tags.css">
<link rel="stylesheet" href="css/svg.select.min.css">
<link rel="stylesheet" href="css/svg.css">
<link rel="stylesheet" href="css/jquery-confirm.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/snackbar.css">
<link rel="stylesheet" href="css/menu.css">
<script src="js/thirdparty/jquery.min.js" ></script>
<script src="js/thirdparty/jquery-confirm.min.js"></script>
<script src="js/thirdparty/bootstrap.min.js"></script>
<script src="js/thirdparty/riot.min.js"></script>
<script src="js/thirdparty/Blob.js"></script>
<script src="js/thirdparty/FileSaver.min.js"></script>
<script src="js/thirdparty/fxp.js"></script>
</head>
<body>
<div class="container-fluid">
<div id="menubar" class="row overlay-color align-items-center" style="height: 50px;">
<div class="p-2 col-1">
<menu></menu>
</div>
<div class="p-2 col-9 text-center">
<a href="https://github.com/NaturalIntelligence/imglab"><img src="img/imglab_logo.png" height="48px" style="margin-bottom: 2px" ></a>
<span style="font-size: 2em">Img Lab</span>
</div>
<div class="p-2 col-1">
<plugins-menu></plugins-menu>
<shortcuts></shortcuts>
</div>
<div class="p-2 col-1">
<div><a class="btn btn-info" onclick="javascript:displayDonationPrompt()">Donate</a></div>
</div>
</div><!-- End of Menubar -->
</div>
<div class="flex-row">
<div class="d-flex flex-row" style="height: calc(100vh - 50px);">
<div id="toolbar" class="d-flex flex-column overlay-color align-items-end grey-border">
<toolbox tools="labelling"></toolbox>
<toolbox class="mt-auto toolbox-border-top" tools="canvas"></toolbox>
</div>
<div class="d-flex flex-column base-color" style="width: 100vw">
<div>
<actionbar></actionbar>
</div>
<div>
<workarea></workarea>
</div>
<div class="grey-border mt-auto" style="height: 100px; width: 100%; margin: 0px 2px;">
<images-slider thumbnail_width="90px" class="mt-auto"></images-slider>
</div>
</div>
<div id="sidebar" class="p-2 overlay-color grey-border" style="width: 300px;">
<sidebar></sidebar>
</div>
</div>
<div id="snackbar"></div>
<plugin-window></plugin-window>
</div>
<script src="js/prompt.js"></script>
<script src="js/config.js"></script>
<!-- <script src="tags/tags.js"></script> -->
<script src="tags/images-slider.tag.html" type="riot/tag"></script>
<script src="tags/menu.tag.html" type="riot/tag"></script>
<script src="tags/pluginsMenu.tag.html" type="riot/tag"></script>
<script src="tags/shortcuts.tag.html" type="riot/tag"></script>
<script src="tags/toolbox.tag.html" type="riot/tag"></script>
<script src="tags/workarea.tag.html" type="riot/tag"></script>
<script src="tags/pluginWindow.tag.html" type="riot/tag"></script>
<script src="tags/facepp.tag.html" type="riot/tag"></script>
<script src="tags/actionbar.tag.html" type="riot/tag"></script>
<script src="js/thirdparty/riot+compiler.min.js"></script>
<script type="text/javascript">
riot.mount("menu, plugins-menu, shortcuts");
riot.mount("actionbar");
riot.mount("toolbox");
riot.mount("images-slider");
</script>
<script src="js/thirdparty/svg.min.js"></script>
<script src="js/thirdparty/svg.draw.min.js"></script>
<script src="js/thirdparty/svg.select.min.js"></script>
<script src="js/thirdparty/svg.resize.min.js"></script>
<script src="js/thirdparty/svg.draggable.min.js"></script>
<!-- <script src="js/thirdparty/svg.panzoom.min.js"></script> -->
<script src="js/store.js"></script>
<script src="js/savefile.js"></script>
<script src="js/openfile.js"></script>
<script src="js/dlib.js"></script>
<script src="js/app.js"></script>
</body>
</html>