Spaces:
Running
Running
File size: 921 Bytes
e56a2c2 0ad0cec 8facce1 e56a2c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My static Space</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="wrap">
<canvas id="gl"></canvas>
<div class="ui">
<label>θ_E² 常數 <input id="thetaE" type="range" min="0.0001" max="0.1" step="0.0001" value="0.01"></label>
<label>影子臨界比例 <input id="shadowScale" type="range" min="1.0" max="4.0" step="0.01" value="1"></label>
<label>位置(拖曳畫布移動)</label>
<label>背景圖 <input id="img" type="file" accept="image/*"></label>
<button id="reset">重置</button>
<label><input id="animate" type="checkbox" checked="true"> 自轉/繞行示意</label>
</div>
</div>
<script src="index.js"></script>
</body>
</html>
|