35 lines
884 B
HTML
35 lines
884 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>WEBGL Test</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<canvas id="c" width="1900" height="1000"></canvas>
|
|
<div class="off-can closed">
|
|
<group id="rotate">
|
|
<group-label>Rotation</group-label>
|
|
</group>
|
|
<group id="translate">
|
|
<group-label>Transform</group-label>
|
|
</group>
|
|
<group id="color">
|
|
<group-label>Color</group-label>
|
|
</group>
|
|
<group id="world">
|
|
<group-label>World</group-label>
|
|
</group>
|
|
<group id="draw">
|
|
<group-label>Draw</group-label>
|
|
</group>
|
|
</div>
|
|
<div class="settings-icon">☰</div>
|
|
<script src="js/utils.js" defer></script>
|
|
<script src="js/handler.js"></script>
|
|
<script src="js/index.js"></script>
|
|
<script src="js/sphere.js"></script>
|
|
<script src="js/gui.js"></script>
|
|
</body>
|
|
</html>
|