Files
2016-06-18 13:10:37 -05:00

29 lines
776 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Howler.js Tests</title>
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div id="container">
<button class="button" id="webaudio">RUN WEB AUDIO TESTS</button>
<button class="button" id="html5">RUN HTML5 TESTS</button>
<button class="button" id="spatial">RUN SPATIAL TESTS</button>
</div>
<script>
document.getElementById('webaudio').onclick = function() {
window.location = 'core.webaudio.html';
};
document.getElementById('html5').onclick = function() {
window.location = 'core.html5audio.html';
};
document.getElementById('spatial').onclick = function() {
window.location = 'spatial.html';
};
</script>
</body>
</html>