basic modeum integration template

This commit is contained in:
2024-08-02 13:30:50 +02:00
parent 94d190044e
commit 8ae69408b2
5 changed files with 2682 additions and 1107 deletions

28
lfogui.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<!--
We start with a basic html 'page' that is the size of the jweb object,
but has no scrollbars nor floating content.
-->
<head>
<link rel="stylesheet" href="./src/lfogui.css">
</head>
<body>
<div id="lfo-container"></div>
<script src="./src/moment.js"></script>
<script src="./src/react.js"></script>
<script src="./src/react-dom.js"></script>
<script src="./src/common.js"></script>
<script src="./src/enums.js"></script>
<script src="./src/modulators.js"></script>
<script src="./src/lfogui.js">
</script>
</body>
</html>