mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
30 lines
649 B
HTML
30 lines
649 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="../jspsych/dist/index.browser.js"></script>
|
|
<script src="dist/index.browser.js"></script>
|
|
<link rel="stylesheet" href="../jspsych/css/jspsych.css">
|
|
</head>
|
|
<body></body>
|
|
<script>
|
|
const jsPsych = initJsPsych();
|
|
|
|
const trial = {
|
|
type: jsPsychImageTextAnnotation,
|
|
image: '../../examples/img/happy_face_3.jpg',
|
|
prompt: '<p>Label the face.</p>',
|
|
labels: [
|
|
'Mouth',
|
|
'Eye',
|
|
'Nose',
|
|
'Ear'
|
|
],
|
|
regions: [
|
|
{left: 150, right: 225, top:180, bottom:200},
|
|
]
|
|
}
|
|
|
|
jsPsych.run([trial])
|
|
</script>
|
|
</html>
|