-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
31 lines (28 loc) · 1.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!--
This jsaSound Code is distributed under LGPL 3
Copyright (C) 2012 National University of Singapore
Inquiries: [email protected]
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNULesser General Public License for more details.
You should have received a copy of the GNU General Public License and GNU Lesser General Public License along with this program. If not, see <http://www.gnu.org/licenses/>
-->
<html>
<head>
<!--
This code demonstrates
a) Using a dynamically created list selector to choose sound jsaModels,
b) a dynamically created "Player" to display sliders for sound model parameters
-->
<link rel="stylesheet" type="text/css" href="css/jsaSound.css">
<title>jsaSound</title>
<meta name="description" content="jsaSound: an interactive sound library">
<script type="text/javascript" data-main="scripts/main.js" src="scripts/require.js"></script>
</head>
<body>
<h1> Dynamically create model GUI with sliders and text boxes for model parameters </h1>
<!-- Here we will dynamically create the sound list for selection -->
<b> Choose your sound model: </b>
<select id="soundSelector">
</select> </br>
</body>
</html>