-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexampleDebImages.js
More file actions
85 lines (82 loc) · 2.71 KB
/
exampleDebImages.js
File metadata and controls
85 lines (82 loc) · 2.71 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
define(['pipAPI', 'https://galmaimon.github.io/iatdeb.js'], function(APIConstructor, iatExtension){
var API = new APIConstructor();
return iatExtension({
category1 : {
name : 'Asian American', //Will appear in the data.
title : {
media : {word : 'Asian American'}, //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
{image: 'AFE851.jpg'},
{image: 'AFE831.jpg'},
{image: 'AFE811.jpg'},
{image: 'AME871.jpg'},
{image: 'AME831.jpg'},
{image: 'AME821.jpg'}
],
//Stimulus css (style)
stimulusCss : {color:'#31940F','font-size':'1.8em'}
},
category2 : {
name : 'European American', //Will appear in the data.
title : {
media : {word : 'European American'}, //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
{image: 'AME041.jpg'},
{image: 'AME011.jpg'},
{image: 'AME021.jpg'},
{image: 'AFE021.jpg'},
{image: 'AFE071.jpg'},
{image: 'AFE081.jpg'},
],
//Stimulus css
stimulusCss : {color:'#31940F','font-size':'1.8em'}
},
attribute1 :
{
name : 'Foreign',
title : {
media : {word : 'Foreign'},
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
{image: 'FOR002.jpg'},
{image: 'FOR003.jpg'},
{image: 'FOR006.jpg'},
{image: 'FOR001.jpg'},
{image: 'FOR004.jpg'},
{image: 'FOR005.jpg'}
],
//Stimulus css
stimulusCss : {color:'#0000FF','font-size':'2.3em'}
},
attribute2 :
{
name : 'American',
title : {
media : {word : 'American'},
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
{image: 'AME009.jpg'},
{image: 'AME0016.jpg'},
{image: 'AME006.jpg'},
{image: 'AME0012.jpg'},
{image: 'AME003.jpg'},
{image: 'AME002.jpg'}
],
//Stimulus css
stimulusCss : {color:'#0000FF','font-size':'2.3em'}
},
base_url : {//Where are your images at?
image : 'https://baranan.github.io/minno-tasks/images/'
}
});
});