-
Notifications
You must be signed in to change notification settings - Fork 682
/
Copy pathwebgl-same-code-resize.html
90 lines (88 loc) · 2.18 KB
/
webgl-same-code-resize.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
<!-- Licensed under a BSD license. See license.html for license -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>WebGL - Same Code - Resize</title>
<link type="text/css" href="resources/css/ui-lightness/jquery-ui-1.8.16.custom.css" rel="stylesheet" />
<style>
html {
box-sizing: border-box;
height: 100%;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
height: 100%;
margin: 0;
font-family: Helvetica, Arial, Sans-Serif;
}
#editor td {
padding: 0px;
}
#editor {
border-spacing: 0px;
width: 100%;
height: 100%;
}
#canvas {
width: 100%;
height: 100%;
display: block;
}
#viewContainer {
width: 70%
}
#controlContainer {
width: 30%;
}
#controls {
border-left: 5px solid black;
background-color:#666;
color: white;
padding: 0px 0.5em 0px 0.5em;
width: 100%;
height: 100%;
font-size: large;
}
</style>
</head>
<body>
<table id="editor">
<tr>
<td id="viewContainer">
<canvas id="canvas"></canvas>
</td>
<td id="controlContainer">
<div id="controls">Controls<br/>for<br/>an<br/>Editor<br/>would<br/>go<br/>here<br/><br/><=- Drag this black bar</div>
</td>
</tr>
</table>
</body>
<script src="resources/jquery-1.7.1.min.js"></script>
<script src="resources/jquery-ui-1.8.16.custom.min.js"></script>
<script src="resources/colResizable-1.3.min.js"></script>
<!--
for most samples webgl-utils only provides shader compiling/linking and
canvas resizing because why clutter the examples with code that's the same in every sample.
See https://webglfundamentals.org/webgl/lessons/webgl-boilerplate.html
and https://webglfundamentals.org/webgl/lessons/webgl-resizing-the-canvas.html
for webgl-utils, m3, m4, and webgl-lessons-ui.
-->
<script src="resources/webgl-utils.js"></script>
<script src="resources/m4.js"></script>
<script src="resources/primitives.js"></script>
<script src="resources/same-code.js"></script>
<script>
'use strict';
$(function() {
$("#editor").colResizable({
liveDrag: true,
gripInnerHtml: "<div class='grip'></div>",
draggingClass: "dragging",
});
});
</script>
</html>