-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmarker.html
66 lines (58 loc) · 1.61 KB
/
marker.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Marker</title>
<style type="text/css">
button {
display: inline-block;
width: 30%%;
height: 20px;
}
body {
text-align: center;
}
img {
width: 90%;
margin: 50px auto;
}
</style>
</head>
<body>
<div>
<button onclick="chooseMarker(this.value)" value="1">Playback</button>
<button onclick="chooseMarker(this.value)" value="2">Distortion</button>
<button onclick="chooseMarker(this.value)" value="3">Low Pass</button>
</div>
<!--
<div>
<button onclick="chooseMarker(this.value)" value="0.png">This one</button>
<button onclick="chooseMarker(this.value)" value="1">Playback</button>
<button onclick="chooseMarker(this.value)" value="2">Distortion</button>
<button onclick="chooseMarker(this.value)" value="3">Low Pass</button>
<button onclick="chooseMarker(this.value)" value="4">4</button>
</div>
-->
<img />
<script>
function chooseMarker(num) {
displayMarkerImage(num);
//var div = document.querySelector('div');
//div.parentNode.removeChild(div);
}
function displayMarkerImage(num) {
document.querySelector('img').src = 'markers/' + num;
}
/*
function displayMarkerFromHash() {
console.log('marker');
markerNum = location.hash.replace('#', '');
document.querySelector('img').src = 'markers/' + markerNum;
}
window.onload = displayMarkerFromHash;
window.onhashchange = displayMarkerFromHash;
*/
</script>
</body>
</html>