作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为jsPsych的实验添加注视十字架。我对js很新。
这是我所拥有的:
var test_stimuli = [
{
image: "img/blau_links.png",
data: { correct_response: 37 }
},
{
image: "img/blau_rechts.png",
data: { correct_response: 37 }
},
{
image: "img/gruen_links.png",
data: { correct_response: 39 }
},
{
image: "img/gruen_rechts.png",
data: { correct_response: 39 }
}
];
var all_tests = jsPsych.randomization.repeat(test_stimuli, 50, true);
var post_test_gap = function() {
return Math.floor( Math.random() * 1500 ) + 750;
}
var test_block = {
type: "single-stim",
stimuli: all_tests.image,
choices: [37, 39],
data: all_tests.data,
timing_response: 1500,
timing_post_test: post_test_gap
};
var fixation_trial = {
type: 'single-stim',
stimuli: ['<p style='text-align:center'>+</p>'],
is_html: true,
timing_response: 500,
timing_post_trial: 0,
choices: 'none'
}
var experiment = [];
experiment.push(instructions_block);
experiment.push(trial_block);
experiment.push(posttrial_block);
experiment.push(fixation_trial);
experiment.push(test_block);
experiment.push(debrief_block);
/* start the experiment */
jsPsych.init({experiment_structure: experiment,
on_finish: function() {
jsPsych.data.displayData();
}
最佳答案
这是一个使用jsPsych-6.0.5和'html-keyboard-response'插件(而不是'single-stim')编码的固定块:
var fixation = {
type: 'html-keyboard-response',
stimulus: '<div style="font-size:60px">+</div>',
choices: jsPsych.NO_KEYS,
trial_duration: 800 // in ms
};
experiment.push(fixation);
关于javascript - jsPsych中的固定交叉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35826810/
几个月前我开始使用 JSPsych/javascript,现在已经编写了我的第一个完整实验。我进行了一次试点,很明显我的参与者没有被平均分配到条件。 要将参与者分配给我正在使用随机化功能的条件: j
我正在开发一个现有项目,但我对 Javascript 还不熟悉。该项目可以在这里找到,它是 JsPsych,我在这里搜索了文档,但找不到答案( http://docs.jspsych.org/ ) 我
我正在尝试修改 jsPsych 中的脚本用于语言和心理学实验的库,这里有一个代码,它按行显示图像,用户可以回答。 您可以设置图像可见的时间,但只能在组中(=每个图像的时间相同),但我需要在不同的时间显
我正在 JSPsych 中编写一个实验,其中有十个条件。我需要根据条件呈现不同频率的五个图像的数组。 我已经设法使用 for 循环和 randomize.sampleWithReplacement 来
我是一名优秀的程序员,十分优秀!