blob: e560f25ec5c9789ad4ffaf7de289b6ce8a5a9a11 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Nodetoy</title>
<meta name="description" content="Nodetoy is a node-based Fragment Shader editor inspired by Shadertoy. It follows the shading language GLSL closely to allow learning from technical resources without needing to write in the textual syntax of the language.">
<style type="text/css">
body {
overflow: hidden;
margin: 0 !important;
padding: 0 !important;
height: 100%;
width: 100%;
}
canvas {
margin-right: auto;
margin-left: auto;
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<canvas id="nodetoy"></canvas>
</body>
</html>
|