flow-field-art / index.html
AgentNLP's picture
Update index.html
4a42791 verified
raw
history blame contribute delete
761 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flow Field Art</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<canvas id="canvas"></canvas>
<div class="panel">
<h1>Flow Field</h1>
<p>Generative art</p>
<label>
Density
<input type="range" id="density" min="2000" max="30000" step="1000" value="12000">
</label>
<label>
Curl
<input type="range" id="curl" min="0" max="6" step="0.1" value="2">
</label>
<label>
Speed
<input type="range" id="speed" min="0.2" max="3" step="0.1" value="1">
</label>
<button id="regen">New Seed</button>
</div>
<script src="script.js"></script>
</body>
</html>