jsPsych/examples/jspsych-xab.html
2017-07-17 10:19:41 -04:00

33 lines
682 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-xab-image.js"></script>
<link rel="stylesheet" href="../css/jspsych.css"></link>
<style>
img {
width: 300px;
margin: 20px;
}
</style>
</head>
<body></body>
<script>
var trial = {
type: 'xab-image',
stimuli: ['img/happy_face_1.jpg', 'img/happy_face_2.jpg'],
prompt: "<p>Press Q if the face you just saw is on the left. Press P if the face you just saw is on the right.</p>",
trial_duration: 2000
}
jsPsych.init({
timeline: [trial],
on_finish: function() {
jsPsych.data.displayData();
}
});
</script>
</html>