Space / index.html
ewdlop's picture
Update index.html (#3)
8facce1 verified
raw
history blame contribute delete
921 Bytes
<!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>