-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
52 lines (36 loc) · 1.64 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="UTF-8" />
<title>My New Pen!</title>
<!-- Styles -->
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<h1>Audio Visualisation Starter</h1>
<h2>Starters</h2>
<nav>
<ul>
<li><a href="examples/htmlcss.html">HTML (DOM) Example</a></li>
<li><a href="examples/svg.html">SVG (DOM) Example</a></li>
<li><a href="examples/canvas.html">Canvas Example</a></li>
</ul>
</nav>
<h1 id="audiovisstarterproject">Audio Vis Starter Project</h1>
<p>Well hello there! Welcome to the audio visualisation starter project! Allow me to run you through it.</p>
<p>There are three HTML files (see examples folder), each one shows an example of creating a visualisation in different ways, each has it's own js file (see scripts folder).</p>
<p>You can create vis in any way you can make things in a browser: HTML & CSS, SVGs or a <code>canvas</code> element. What ever floats your boat.</p>
<blockquote>
<p>NB To have your visualisation run at the <em>Cool Karaoke Party™</em> you will need to create them with the canvas element example.</p>
</blockquote>
<h3>Some links you'll need</h3>
<p><a href="https://github.com/monteslu/nodeart2019">MIDI Controller build for later </a></p>
<p><a href="https://simon.html5.org/dump/html5-canvas-cheat-sheet.html">Canvas Cheatsheet</a></p>
<p><a href="https://github.com/Rumyra/audioVisStarter">This repo</a></p>
<h3>Made by <a href="https://twitter.com/Rumyra">Ruth John</a></h3>
<p>\ ゜o゜)ノ</p>
<!-- Scripts -->
<script src="scripts/index.js"></script>
</body>
</html>