jsPsych/tests&examples/jspsych-animation.html
2015-02-18 13:23:42 -05:00

33 lines
864 B
HTML

<!doctype html>
<html>
<head>
<script src="js/jquery.min.js"></script>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-animation.js"></script>
<link rel="stylesheet" href="../css/jspsych.css"></link>
</head>
<body>
<div id="jspsych-target"></div>
</body>
<script>
var trials = {
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 class="center-content">Watch the faces</p>'
};
function start(){
jsPsych.init({
display_element: $('#jspsych-target'),
experiment_structure: [trials]
});
}
jsPsych.preloadImages(['img/happy_face_1.jpg', 'img/happy_face_2.jpg', 'img/happy_face_3.jpg', 'img/happy_face_4.jpg'], start);
</script>
</html>