jsPsych/examples/jspsych-categorize-image.html
2021-02-19 18:20:26 -08:00

45 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-categorize-image.js"></script>
<script src="../plugins/jspsych-preload.js"></script>
<link rel="stylesheet" href="../css/jspsych.css">
<style>
img {
width: 300px;
}
</style>
</head>
<body></body>
<script>
var preload = {
type: 'preload',
auto_preload: true
}
var trials = {
type: 'categorize-image',
stimulus: 'img/happy_face_1.jpg',
key_answer: 'h',
choices: ['h', 's'],
text_answer: 'happy',
correct_text: "<p>Correct. This face is %ANS%.</p>",
incorrect_text: "<p>Incorrect. This face is %ANS%. Please press the correct key to continue.</p>",
prompt: "<p>Press 'h' if the face is happy. Press 's' if the face is sad.</p>",
trial_duration: 1500,
show_feedback_on_timeout: false,
force_correct_button_press: true
};
jsPsych.init({
timeline: [preload, trials],
on_finish: function() {
jsPsych.data.displayData();
}
});
</script>
</html>