jsPsych/tests&examples/jspsych-video.html
2016-08-16 11:19:37 -04:00

24 lines
464 B
HTML

<!doctype html>
<html>
<head>
<script src="js/jquery.min.js"></script>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-video.js"></script>
<link rel="stylesheet" href="../css/jspsych.css"></link>
</head>
<script>
var trial = {
type: 'video',
sources: ['video/sample_video.mp4']
}
jsPsych.init({
timeline: [trial],
on_finish: function() { jsPsych.data.displayData(); }
});
</script>
</html>