Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Music Visualizer</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<div id="error-box"></div>
<div id="intro-box">
<h2>Welcome Web Music Visualiser</h1>
<p>My code takes mp3 files and turns into the animation you see. Have fun <i>Hint: Mess with the volume button<i>
</div>
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
<div class="playback-container">
<div class="playback-options">
<div href="" class="playback-btn prev" id="prev">
</div>
<a href="" class="playback-btn play" id="play">
</a>
<div class="playback-btn next" id="next">
</div>
<input type="range" id="volume" value="1" max="1" step=".01"/>
</div>
</div>
<script src="js/jquery.min.js">
</script>
<script src="js/three.min.js"></script>
<script src="js/Tween.js"></script>
<script src="js/helper.js"></script>
<script defer src="js/main.js"></script>
</script>
</body>
</html>