mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 19:20:55 +00:00
63 lines
2.0 KiB
HTML
63 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="../jspsych.js"></script>
|
|
<script src="../plugins/jspsych-audio-keyboard-response.js"></script>
|
|
<script src="../plugins/jspsych-html-button-response.js"></script>
|
|
<link rel="stylesheet" href="../css/jspsych.css">
|
|
</head>
|
|
<body></body>
|
|
<script>
|
|
|
|
var pre_audio = {
|
|
type: 'html-button-response',
|
|
stimulus: '<div style="max-width:600px;"><p>Some browsers now require the user to interact with a page before it can play audio. '+
|
|
'Clicking the button below counts as an interaction.</p><p>Be aware of this when planning audio experiments if '+
|
|
'you want the first trial to include audio.</p></div>',
|
|
choices: ['Continue']
|
|
}
|
|
|
|
var trial_1 = {
|
|
type: 'audio-keyboard-response',
|
|
stimulus: 'sound/speech_blue.mp3',
|
|
choices: ['y', 'n'],
|
|
prompt: '<div style="width: 300px; height: 300px; background-color: #0000ff; display: inline-block;"></div>'+
|
|
'<p>Does the color match the word? (Y or N)</p>'
|
|
}
|
|
|
|
var trial_2 = {
|
|
type: 'audio-keyboard-response',
|
|
stimulus: 'sound/speech_green.mp3',
|
|
choices: ['y', 'n'],
|
|
trial_duration: 5000,
|
|
prompt: '<div style="width: 300px; height: 300px; background-color: #ff0000; display: inline-block;"></div>'+
|
|
'<p>Does the color match the word? (Y or N; 5s time limit)</p>'
|
|
}
|
|
|
|
var trial_3 = {
|
|
type: 'audio-keyboard-response',
|
|
stimulus: 'sound/speech_red.mp3',
|
|
choices: jsPsych.NO_KEYS,
|
|
trial_duration: 2000,
|
|
prompt: '<p>No response allowed. 2s wait.</p>'
|
|
}
|
|
|
|
trial_4 = {
|
|
type: 'audio-keyboard-response',
|
|
stimulus: 'sound/speech_joke.mp3',
|
|
choices: jsPsych.ALL_KEYS,
|
|
prompt: '<p>When the audio stops, press any key to end the trial.</p><p>Responses made while the audio is still playing will be ignored.</p>',
|
|
response_allowed_while_playing: false
|
|
}
|
|
|
|
jsPsych.init({
|
|
timeline: [pre_audio, trial_1, trial_2, trial_3, trial_4],
|
|
on_finish: function() {
|
|
jsPsych.data.displayData();
|
|
},
|
|
default_iti: 250
|
|
});
|
|
</script>
|
|
|
|
</html>
|