You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.6 KiB
HTML
65 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
<script src="cables.js" defer></script>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="divSmoothingFactor">
|
|
<label for="cmbBufferSize">Smoothing</label>
|
|
<select id="cmbBufferSize">
|
|
<option value="1">1 - No smoothing</option>
|
|
<option value="4">4 - Sharp curves</option>
|
|
<option value="8" selected="selected">8 - Smooth curves</option>
|
|
<option value="12">12 - Very smooth curves</option>
|
|
<option value="16">16 - Super smooth curves</option>
|
|
<option value="20">20 - Hyper smooth curves</option>
|
|
</select>
|
|
</div>
|
|
|
|
<form class="module">
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
version="1.1"
|
|
id="svgElement"
|
|
x="0px"
|
|
y="0px"
|
|
width="500px"
|
|
height="500px"
|
|
viewBox="0 0 500 500"
|
|
enable-background="new 0 0 500 500"
|
|
xml:space="preserve"
|
|
></svg>
|
|
|
|
<div class="left">
|
|
<div class="socket">
|
|
<input type="text" name="LFO" />
|
|
<label for="LFO">LFO</label>
|
|
</div>
|
|
<div class="socket">
|
|
<input type="text" name="ENV" />
|
|
<label for="ENV">ENV</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="right">
|
|
<div class="socket">
|
|
<input type="text" name="frequency" />
|
|
<label for="frequency">Frequency</label>
|
|
</div>
|
|
<div class="socket">
|
|
<input type="text" name="amp" />
|
|
<label for="amp">Amp</label>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<ul id="logs"></ul>
|
|
</body>
|
|
</html>
|