jsPsych/examples/jspsych-video-keyboard-response.html
2020-11-04 11:27:50 -08:00

53 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-video-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_trial = {
type: 'html-button-response',
stimulus: '<div style="max-width:600px;"><p>Some browsers now require that a user interacts with a web page before video or audio content will autoplay. Clicking the button below satisfies that requirement.</p><p>Without this trial, the video will load but not play.</p></div>',
choices: ['continue']
}
var trial_1 = {
type: 'video-keyboard-response',
sources: ['video/sample_video.mp4'],
choices: ['y','n'],
prompt: 'Press Y or N',
width: 600,
//height: 600,
autoplay: true,
//controls: true,
//start: 8,
//stop: 9,
rate: 1.5,
//trial_duration: 2000,
//trial_ends_after_video: true,
response_ends_trial: true
}
var trial_2 = {
type: 'video-keyboard-response',
sources: ['video/sample_video.mp4'],
choices: jsPsych.ALL_KEYS,
prompt: '<p>When the video stops, press any key to end the trial.</p><p>Responses that are made before the video ends will be ignored.</p>',
width: 600,
autoplay: true,
response_ends_trial: true,
response_allowed_while_playing: false
}
jsPsych.init({
show_preload_progress_bar: true,
timeline: [pre_trial, trial_1, trial_2],
on_finish: function() { jsPsych.data.displayData(); }
});
</script>
</html>