-
Notifications
You must be signed in to change notification settings - Fork 0
/
canvas_out.html
73 lines (67 loc) · 2.5 KB
/
canvas_out.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MAQE</title>
<link rel="stylesheet" href="stylesheets/stylesheet3.css">
<link rel="stylesheet" href="stylesheets/drag_stylesheet.css">
<script src="https://code.jquery.com/jquery-2.2.4.js" integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI=" crossorigin="anonymous"></script>
<script src="js/interact.min.js"></script>
<script src="js/maqe_out.js"></script>
<script type="text/javascript" src="js/components.js"></script>
</head>
<body>
<div class="row" style="display:inline">
<nav>
<div class="nav-icons">
<a href="#"><img src="Images/[email protected]" id="img1"></img></a>
<a href="#"><img src="Images/[email protected]" id="img2"></img></a>
<a href="#"><img src="Images/[email protected]" id="img3"></img></a>
<a href="#"><img src="Images/[email protected]" id="img4"></img></a>
<a href="#"><img src="Images/menu.png" id="img5"></img></a>
</div>
<div class="main-logo">
<img src="Images/[email protected]"></img>
</div>
</nav>
</div>
<div class="row">
<div class="sidebar1" style="float:left; width:15%">
<div class="box">
<h2>Choose your theme</h2>
<br>
<img src="images/svg/christmas/christmas.svg">
<button class="deco" value="christmas">
Christmas
</button>
<br><br>
<img src="images/svg/prototype/eleaf3.svg">
<button class="deco" value="prototype">
Floral
</button>
</div>
</div>
<div id="canvas-out" class="container" style="float:left; width:70%">
<div class="trash tooltip" style="float:right">
<span class="tooltiptext">Drag here to trash</span>
<img src="/images/trash-can.png" height="80">
</div>
<div class="sweep tooltip" style="float:left">
<span class="tooltiptext">Clear all excess images</span>
<img class="sweep" src="images/sweep.png" height="80">
</div>
<div id="cardbox-body" class="cardbox">
</div>
<canvas class="draggable-text" id="canvas" height="100px" width="400px"></canvas>
</div>
<div class="sidebar2 box" style="float:left; width:15%">
<form id="add-text" style="margin-left:30px; margin-top:10px;">
Add text:<br>
<input type="text" name="text">
<input type="submit" value="Submit">
</form>
<h3><a href='./canvas_in' style="color:#ffb800; margin-left: 50px">NEXT STEP > </a></h3>
</div>
</div>
</body>
</html>