mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 19:20:55 +00:00
30 lines
611 B
HTML
30 lines
611 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"></link>
|
|
</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>
|