forked from jspsych/jsPsych
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprogress-bar.html
More file actions
62 lines (55 loc) · 1.38 KB
/
progress-bar.html
File metadata and controls
62 lines (55 loc) · 1.38 KB
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
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-image-keyboard-response.js"></script>
<script src="../plugins/jspsych-html-keyboard-response.js"></script>
<link rel="stylesheet" href="../css/jspsych.css"></link>
<style>
img {
width: 300px;
}
</style>
</head>
<body></body>
<script>
var trial_1 = {
type: 'image-keyboard-response',
stimulus: 'img/happy_face_1.jpg',
choices: [89, 78], // Y or N
prompt: '<p>Have you seen this face before? Y or N.</p>'
}
var trial_2 = {
type: 'image-keyboard-response',
stimulus: 'img/happy_face_2.jpg',
choices: [89, 78], // Y or N
prompt: '<p>Have you seen this face before? Y or N.</p>'
}
var trial_3 = {
type: 'image-keyboard-response',
stimulus: 'img/happy_face_3.jpg',
choices: [89, 78], // Y or N
prompt: '<p>Have you seen this face before? Y or N.</p>'
}
var cnt = 0;
var block_set = {
timeline: [trial_1, trial_2, trial_3],
loop_function: function() {
cnt++;
return cnt < 2;
}
}
var end_screen = {
type: 'html-keyboard-response',
stimulus: 'The experiment is over.'
}
jsPsych.init({
timeline: [trial_1, trial_2, trial_3], //block_set, end_screen],
show_progress_bar: true,
on_finish: function() {
jsPsych.data.displayData();
}
});
</script>
</head>
</html>