-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (45 loc) · 1.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-1880635-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-1880635-1');
</script>
<title>Tennesee's Geology Project</title>
<LINK REL=STYLESHEET TYPE="text/css" HREF="http://orcasound.net/lwcbooth/booth-style.css">
<script>
var currentPlayer;
function Solo(soundobj) {
var thissound=document.getElementById(soundobj);
if(currentPlayer && currentPlayer != thissound) {
currentPlayer.pause();
}
if (thissound.paused)
thissound.play();
else
thissound.pause();
thissound.currentTime = 0;
currentPlayer = thissound;
}
</script>
</head>
<body>
<audio id="place_1">
<source src="place1.mp3" type="audio/mpeg" />
</audio>
<audio id="place_2">
<source src="place2.mp3" type="audio/mpeg" />
</audio>
<!-- To generate x,y pairs for image map shapes, try this site: https://www.image-map.net/ -->
<div overflow: hidden;>
<img src="2022_cruisesMap.jpg" width="1920" height="1080" usemap="#local">
<map name="local">
<area shape="poly" coords="0,0,00,100, 100, 200, 0,200, 0,0" onClick="Solo('place1'); return true;" target="player" />
<area shape="rect" coords="500, 0, 1000, 500" onClick="Solo('place2'); return true;" target="player" />
</map>
</div>
</body>
</html>