-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (53 loc) · 1.75 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#canvas {
width: 100%;
height: 100%;
}
#c-left,
#c-right {
position: relative;
display: inline-block;
height: 100%;
width: 50%;
}
#c-right {
float: right;
left: 80px;
}
#lnkDownload {
border: 1px solid rgb(196, 196, 196);
text-decoration: none;
color: rgb(48, 47, 47);
font-weight: bold;
background-color: rgb(197, 197, 197);
padding: 10px;
margin-top: 15px;
display: inline-block;
}
</style>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdn.babylonjs.com/babylon.max.js"></script>
<script src="https://cdn.babylonjs.com/loaders/babylonjs.loaders.min.js"></script>
<script src="https://preview.babylonjs.com/serializers/babylonjs.serializers.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/4.1.0/fabric.min.js"></script>
</head>
<body>
<div id="c-left">
<canvas id="canvas"></canvas>
<script src="shirt.js"></script>
</div>
<div id="c-right">
<input type="file" id="file">
</select>
<button class="delete_object">Delete</button>
<canvas id="canvas2"></canvas>
</div>
</body>
</html>