-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskimMode.html
58 lines (42 loc) · 1.9 KB
/
skimMode.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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>Experiment</title>
<!-- written on jsPsych Version 7.3.2 -->
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<!-- load CSS -->
<link href="https://unpkg.com/[email protected]/css/jspsych.css" rel="stylesheet" type="text/css" />
<link href="css/experimentStyle.css" rel="stylesheet" type="text/css"></link>
<!-- load jsPsych library from CDN host -->
<script src="https://unpkg.com/[email protected]"></script>
<!-- load jsPsych plugins -->
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<!-- load external libraries -->
<script src="src/libraries/math/dist/math.js"></script>
<!-- load workflow scripts -->
<script src="scripts/baseFunctions.js"></script>
<script>loadScripts("scripts/", ["counterbalancing", "blockBuilder", "build", "stimulusHelper", "instructionsReader"])</script>
<!-- load experiment parameter -->
<script> loadScripts("input/", ["counterbalancing_rules", "experiment_information", "stimulus_constructor"])</script>
<!-- load Jatos library -->
<script src="jatos.js"></script>
</head>
<body id="experimentSurface">
<script>
var skimMode = true;
var skipToMain = true;
var jsPsych = initJsPsych();
var experimentTimeline = [];
jatos.onLoad(() => {
var experimentTimeline = build();
jsPsych.run(experimentTimeline);
});
</script>
</body>
</html>