-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-mp4.html
36 lines (30 loc) · 952 Bytes
/
index-mp4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Educational Video + GenAI Explain Button</title>
<link rel="stylesheet" type="text/css" href="css/huh.css">
<style>
/* Custom styles go here */
</style>
</head>
<body>
<video id="player" controls>
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video><br/>
<div id="player"></div><br/>
<div id="explanation-container"></div>
<div class="button-container"></div>
<script type="text/javascript">
// Huh? button configuration
const SERVER_PATH = "https://borisruf.github.io/huh/wonka/"
//const TIMESTAMP_RESOLUTION = 5;
//const BUTTON_ACTIVATION_DELAY = 2
//const BUTTON1_LABEL = "What??"
//const BUTTON2_LABEL = "Whaaaaaat????"
</script>
<script src="js/huh-mp4.js"></script>
</body>
</html>