-
Notifications
You must be signed in to change notification settings - Fork 0
/
convergent-no-magma.html
40 lines (40 loc) · 1.4 KB
/
convergent-no-magma.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
<html>
<head>
<script src="jquery-3.3.1.min.js"></script>
<script>
var videoObjects = [{
id: "continentalOceanic",
name: "Continental Oceanic",
timesToPause: [19, 28, 34],
src: "continental-oceanic.mp4"
},{
id: "continentalContinentalConvergent",
name: "Continental Continental",
timesToPause: [10, 17],
src: "continental-continental-convergent.mp4"
}];
</script>
<script src="main.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="videoChoices">
<div>
<h4>Convergent</h4>
<div id="continentalOceanic" class="videoChoice">Continental Oceanic</div>
<div id="continentalContinentalConvergent" class="videoChoice">Continental Continental</div>
</div>
</div>
<div id="videoDiv">
<div id="noVideoMessage">
<div>
Click on a plate boundary above. <br/>A video will appear here.
</div>
</div>
<video id="video" controls muted="muted">
<source id="videoSource" src="" type="video/mp4">
</video>
<div id="message"></div>
</div>
</body>
</html>