-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexampleIATdeb.js
More file actions
95 lines (91 loc) · 2.93 KB
/
exampleIATdeb.js
File metadata and controls
95 lines (91 loc) · 2.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
define(['pipAPI', 'https://galmaimon.github.io/iatdeb.js'], function(APIConstructor, iatExtension){
var API = new APIConstructor();
return iatExtension({
/*showDebriefing is true witch mean that the user will see his feeadback at the end of the test.
If you don't want the feedback to be shown to the user change this value to be false, the score of the test will be save at both cases
*/
showDebriefing:true,
/*
fullscreen mode is false, if full-screen is wanted change fullscreen value to be true,
changing fullscreen value to be true will make the task fullscreen after the first question in Qualtrics, which mean that the trials will begin in full screen
*/
fullscreen:true,
category1 : {
name : 'Career', //Will appear in the data.
title : {
media : {word : 'Career'}, //Name of the category presented in the task.
css : {color:'#31940F','font-size':'2em'}, //Style of the category title.
height : 4 //Used to position the "Or" in the combined block.
},
stimulusMedia : [ //Stimuli content as PIP's media objects
{word: 'Career'},
{word: 'Corporation'},
{word: 'Salary'},
{word: 'Office'},
{word: 'Professional'},
{word: 'Management'},
{word: 'Business'}
],
//Stimulus css (style)
stimulusCss : {color:'#31940F','font-size':'1.8em'}
},
category2 : {
name : 'Family', //Will appear in the data.
title : {
media : {word : 'Family'}, //Name of the category presented in the task.
css : {color:'#31940F','font-size':'2em'}, //Style of the category title.
height : 4 //Used to position the "Or" in the combined block.
},
stimulusMedia : [ //Stimuli content as PIP's media objects
{word: 'Wedding'},
{word: 'Marriage'},
{word: 'Parents'},
{word: 'Relatives'},
{word: 'Family'},
{word: 'Home'},
{word: 'Children'}
],
//Stimulus css
stimulusCss : {color:'#31940F','font-size':'1.8em'}
},
attribute1 :
{
name : 'Male',
title : {
media : {word : 'Male'},
css : {color:'#0000FF','font-size':'1.8em'},
height : 4 //Used to position the "Or" in the combined block.
},
stimulusMedia : [ //Stimuli content as PIP's media objects
{word: 'Ben'},
{word: 'Paul'},
{word: 'Daniel'},
{word: 'John'},
{word: 'Jeffrey'}
],
//Stimulus css
stimulusCss : {color:'#0000FF','font-size':'2.3em'}
},
attribute2 :
{
name : 'Female',
title : {
media : {word : 'Female'},
css : {color:'#0000FF','font-size':'1.8em'},
height : 4 //Used to position the "Or" in the combined block.
},
stimulusMedia : [ //Stimuli content as PIP's media objects
{word: 'Rebecca'},
{word: 'Michelle'},
{word: 'Emily'},
{word: 'Julia'},
{word: 'Anna'}
],
//Stimulus css
stimulusCss : {color:'#0000FF','font-size':'2.3em'}
},
base_url : {//Where are your images at?
image : 'https://baranan.github.io/minno-tasks/images/'
}
});
});