-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 1.68 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>SoundCloud Video Clip</title>
<link rel="stylesheet" type="text/css" href="css/index.css" media="screen" />
<!-- Scripts -->
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="https://connect.soundcloud.com/sdk.js"></script>
<script type="text/javascript" src="js/waveform.js"></script>
<script type="text/javascript" src="js/raphael-min.js"></script>
<script type='text/javascript' src="js/index.js"></script>
</head>
<body>
<h1>SoundCloud Video Clip</h1>
<nav></nav>
<div id="main_panel">
<form id="newSongForm" action="javascript:selectSong($('#song_url').val(),$('#song_tag').val());">
<label for="song_url">URL:</label>
<input id="song_url" type="url" placeholder="https://soundcloud.com/tea-leigh/color-theory-1"/><br />
<label for="song_tag">Tag:</label>
<input id="song_tag" type="text" placeholder="Color Theory"/><br />
<button id="cancel_button" type="button" onclick="javascript:hideForm();" >Cancel</button> <button id="submit_button" type="submit">Submit</button>
</form>
<div id="content">
<div id="illustration"></div>
<div id="time"> </div>
<div id="player">
<img src="img/Play.png" id="playButton" onclick="javascript:togglePause();" />
<div id="cursor"></div>
<div id="waveform"></div>
</div>
</div>
</div>
<div id="comments_div">
<img src="img/Comment.png" id="commentButton" onclick="javascript:toggleComments();" />
<div id="comment"></div>
</div>
</body>
</html>