blob: 95097279c6fdf403c971a1c0b911dfff79f97c0e (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
#container
{
height: 400px;
position: relative;
width: 400px;
}
<!--#viewport-->
<!--{-->
<!--height: 100%;-->
<!--width: 100%;-->
<!--}-->
#controls
{
top: 0;
left: 0;
position: absolute;
width: 100%;
}
</style>
</head>
<body>
<!--<div id="container">-->
<!--<canvas id="viewport">-->
<!--</canvas>-->
<!--<menu id="controls">-->
<!--<button onclick="copy()">belief</button>-->
<!--<button onclick="cut()">intents</button>-->
<!--</menu>-->
<!--</div>-->
<canvas id="viewport" style="z-index:1"></canvas>
<input type="button" style="z-index:2; position:absolute; top:100; left:100" value="test"/>
</body>
<script src="main.js"></script>
</html>
|