-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (30 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4-Part Task</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="mainContainer">
<video id="videoPlayer" width="640" height="360" style="display:none;"></video>
<div id="fixationCross" style="display:none;">+</div>
<p id="message" style="display:none;"></p>
<div id="buttonsContainer"></div>
<div id="feedbackContainer" style="display:none;"></div>
<div id="emotionGraphContainer" style="display: none;">
<h2>How do you feel?</h2>
<svg id="emotionGraph" width="400" height="400" style="background: #eee; display: block; margin: auto;">
<text x="10" y="210" transform="rotate(-90 10,210)">Negative</text>
<text x="370" y="210" transform="rotate(90 370,210)">Positive</text>
<text x="200" y="390" text-anchor="middle">Passive</text>
<text x="200" y="20" text-anchor="middle">Active</text>
</svg>
<button id="emotionSubmit" style="display: block; margin: 20px auto;">Submit</button>
</div>
</div>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</body>
</html>