Removed old test files.
This commit is contained in:
parent
0be6198ea2
commit
d41e5caa6f
Binary file not shown.
@ -1,33 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
|
||||
<title>AudioShowKit visual test</title>
|
||||
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
||||
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
|
||||
|
||||
<script defer src="../src/audioshowkit.js"></script>
|
||||
<script defer src="../src/patterns/HorizontalBar.js"></script>
|
||||
<script defer src='examples.js'></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Hit start to see demo!</h1>
|
||||
<button id="startbtn">Start.</button>
|
||||
|
||||
<h2>Horizontal Bar Pattern</h2>
|
||||
<p>Below is a canvas that has all bin values being drawn live using the built-in horizontal bar pattern.</p>
|
||||
<canvas id="horizontal">Canvases don't seem to be supported! Please try a different browser.</canvas>
|
||||
|
||||
<h2>Binding frequency bin values to element styles</h2>
|
||||
<p>Has never been this easy! Here we bind the width of a div to a frequency bin.</p>
|
||||
<div id="widthDiv"></div>
|
||||
|
||||
<p>Here we bind a frequency to the colour of a div.</p>
|
||||
<div id="colourDiv"></div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,32 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
// We will see if the visualizers core and event systems are working correctly.
|
||||
let startBtn = document.getElementById("startbtn");
|
||||
startBtn.addEventListener("click", async (ev) => {
|
||||
let mediaStream = new Audio("../tests/Elektronomia - Collide.mp3");
|
||||
mediaStream.addEventListener("canplaythrough", (ev) => {
|
||||
let visCore = new VisualizerCore(mediaStream, 128);
|
||||
let coreAndEventCanvas = document.getElementById("horizontal");
|
||||
coreAndEventCanvas.width = 640;
|
||||
coreAndEventCanvas.height = 200;
|
||||
|
||||
mediaStream.play();
|
||||
visCore.analyze();
|
||||
|
||||
bindHorizontalBar(coreAndEventCanvas, visCore); // Pre-made simple horizontal bar visualizer.
|
||||
|
||||
let widthDiv = document.getElementById("widthDiv");
|
||||
widthDiv.style.height = "20px";
|
||||
widthDiv.style.backgroundColor = "orange";
|
||||
visCore.addUpdateListener((delta, bins) => {
|
||||
widthDiv.style.width = bins[3] + "px";
|
||||
})
|
||||
|
||||
let colourDiv = document.getElementById("colourDiv");
|
||||
colourDiv.style.height = "20px";
|
||||
visCore.addUpdateListener((delta, bins) => {
|
||||
colourDiv.style.backgroundColor = "rgb(" + bins[0] + "," + bins[1] + ", " + bins[4] + ")";
|
||||
})
|
||||
});
|
||||
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user