-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
47 lines (38 loc) · 1.98 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
<!DOCTYPE html>
<html>
<head>
<title>Self paced reading with moving window</title>
<meta charset="UTF-8">
<script src="https://web-experiments.lab.hum.uu.nl/jspsych/7.0.0/jspsych.js"></script>
<script src="https://web-experiments.lab.hum.uu.nl/jspsych/7.0.0/plugin-html-keyboard-response.js"></script>
<script src="https://web-experiments.lab.hum.uu.nl/jspsych/7.0.0/plugin-html-button-response.js"></script>
<script src="https://web-experiments.lab.hum.uu.nl/jspsych/7.0.0/plugin-survey-multi-select.js"></script>
<script src="https://web-experiments.lab.hum.uu.nl/jspsych/7.0.0/plugin-survey-text.js"></script>
<!-- Generic jspsych style sheets -->
<link href="https://web-experiments.lab.hum.uu.nl/jspsych/7.0.0/jspsych.css" rel="stylesheet" type="text/css"/>
<!-- Uil OTS libraries -->
<script src="https://web-experiments.lab.hum.uu.nl/jspsych/uil-utils/0.1/jspsych-uil-utils.js"></script>
<link href="https://web-experiments.lab.hum.uu.nl/jspsych/uil-utils/0.1/fonts.css" rel="stylesheet" type="text/css"/>
<!-- Uil OTS scripts -->
<script src="https://web-experiments.lab.hum.uu.nl/jspsych/uil-utils/1.1/jspsych-plugins/plugin-survey.js"></script>
<script src="globals.js"></script>
<script src="consent.js"></script>
<script src="instructions.js"></script>
<script src="stimuli.js"></script>
<script src="survey.js"></script>
<!--maybe one day this plugin will be put in the mainline jsPsych
repository.-->
<script src="plugins/jspsych-spr-moving-window.js"></script>
<script src="main.js"></script>
<style>
.jspsych-survey-multi-choice-text {
text-align: left !important;
}
</style>
</head>
<body></body>
<script>
// see main.js for the main function and experiment timeline
window.addEventListener('load', main);
</script>
</html>