jsPsych/examples/jspsych-animation.html
2020-05-26 20:20:03 -05:00

30 lines
604 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-animation.js"></script>
<link rel="stylesheet" href="../css/jspsych.css">
</head>
<body></body>
<script>
var animation_trial = {
type: 'animation',
stimuli: ['img/happy_face_1.jpg', 'img/happy_face_2.jpg', 'img/happy_face_3.jpg', 'img/happy_face_4.jpg'],
sequence_reps: 3,
frame_time: 300,
prompt: '<p>Watch the faces.</p>'
};
jsPsych.init({
timeline: [animation_trial],
on_finish: function() {
jsPsych.data.displayData();
}
});
</script>
</html>