-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsoundVisual.html
More file actions
58 lines (57 loc) · 3.39 KB
/
soundVisual.html
File metadata and controls
58 lines (57 loc) · 3.39 KB
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
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta name="author" content="Jiwon Shin">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<link rel="stylesheet" href="css/style.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.16/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.16/addons/p5.dom.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<title>Basic Sound Visualization</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110518171-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-110518171-1');
</script>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<main class="mdl-layout__content">
<div class="page-content">
<div class="full-page-content">
<h4><b>Creating Sound Visualization with CSS Animation</b></h4>
<iframe height="500" src="sound-visual-demo.html"></iframe>
<p><u><a class="p-link" href="sound-visual-demo.html">Click to view the demo as a full web page.</a></u></p>
<p><b>Useful Open-Source Sound / Music Websites:</b></p>
<p><a class="p-link" href="http://freesound.org/">Freesound.org</a></p>
<p><a class="p-link" href="http://freemusicarchive.org/">Free Music Archive</a></p>
<p><a class="p-link" href="https://archive.org/index.php">Archive.org</a></p>
<p>This <u><a class="p-link" href="https://www.w3schools.com/tags/ref_av_dom.asp">w3schools</a></u> link on Audio DOM reference, properties and events will be helpful to look at.</p>
<p><a class="p-link" href="https://commons.wikimedia.org/wiki/Main_Page">WikiMedia Commons</a></p>
<p>You can download the example code from <u><a class="p-link" href="https://github.com/js6450/CommLabGSS/tree/master/_sound-visualization">Github</a></u> or as compressed zip files from <a class="p-link" href="assets/sound-visual.zip" download><u>here</u></a>.</p>
</div>
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
<ul class="mdl-mini-footer__link-list">
<li><u><a class="p-link" href="index.html" target="_self">BACK TO MAIN</a></u></li>
</ul>
</div>
<div class="mdl-mini-footer__right-section">
<ul class="mdl-mini-footer__link-list">
<li>Workshops By <u><a class="p-link" href="http://jiwonshin.com" target="_blank">Jiwon Shin</a></u></li>
</ul>
</div>
</footer>
</div>
</main>
</div>
</body>
<script src="js/background.js"></script>
</html>