forked from hvannieuwenh/dotCategoryLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.07 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
<!DOCTYPE html>
<html>
<style>
.stim {
width: 28vw;
}
.left_choice {
position: absolute;
left: 18vw;
top: 28vh;
width: 20vw;
}
.right_choice {
position: absolute;
right: 18vw;
top: 30vh;
width: 20vw;
}
.left_stim {
position: absolute;
left: 18vw;
top: 20vh;
width: 24vw;
}
.right_stim {
position: absolute;
right: 18vw;
top: 20vh;
width: 24vw;
}
</style>
<head>
<title>My experiment</title>
<script src="https://unpkg.com/jspsych@7.3.3"></script>
<script src="https://unpkg.com/@jspsych/plugin-image-keyboard-response@1.1.2"></script>
<script src="https://unpkg.com/@jspsych/plugin-html-keyboard-response@1.1.2"></script>
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.2"></script>
<script src="jatos.js"></script>
<link href="https://unpkg.com/jspsych@7.3.3/css/jspsych.css" rel="stylesheet" type="text/css" />
<script src="experiment.js"></script>
</head>
</html>