mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 19:20:55 +00:00
28 lines
664 B
HTML
28 lines
664 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'
|
|
],
|
|
regions: [
|
|
{left: 100, right: 200, top:100, bottom:200},
|
|
{left: 220, right: 300, top:100, bottom:200}]
|
|
}
|
|
|
|
jsPsych.run([trial])
|
|
</script>
|
|
</html>
|