mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="docs-demo-timeline.js"></script>
|
|
<script src="https://unpkg.com/jspsych@7.3.2"></script>
|
|
<script src="https://unpkg.com/@jspsych/plugin-preload@1.1.2"></script>
|
|
<script src="https://unpkg.com/@jspsych/plugin-html-button-response@1.1.2"></script>
|
|
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@1.1.2"></script>
|
|
<link rel="stylesheet" href="https://unpkg.com/jspsych@7.3.2/css/jspsych.css" />
|
|
<link rel="stylesheet" href="docs-demo.css" type="text/css">
|
|
</head>
|
|
<body></body>
|
|
<script>
|
|
|
|
const jsPsych = initJsPsych();
|
|
|
|
const preload = {
|
|
type: jsPsychPreload,
|
|
images: ['img/elephant.png', 'img/lion.png', 'img/monkey.png']
|
|
}
|
|
|
|
const instructions = {
|
|
type: jsPsychHtmlButtonResponse,
|
|
stimulus: `<p>Press E if there is an elephant in the group.</p>
|
|
<p>Press N if there is no elephant in the group.</p>`,
|
|
choices: ['Continue']
|
|
}
|
|
|
|
const trial = {
|
|
type: jsPsychVisualSearchCircle,
|
|
stimuli: ['img/elephant.png', 'img/lion.png', 'img/monkey.png'],
|
|
fixation_image: 'img/fixation.gif',
|
|
target_present_key: 'e',
|
|
target_absent_key: 'n',
|
|
target_present: true
|
|
}
|
|
|
|
const timeline = [instructions, trial];
|
|
|
|
if (typeof jsPsych !== "undefined") {
|
|
jsPsych.run(generateDocsDemoTimeline(timeline, [preload]));
|
|
} else {
|
|
document.body.innerHTML = '<div style="text-align:center; margin-top:50%; transform:translate(0,-50%);">You must be online to view the plugin demo.</div>';
|
|
}
|
|
</script>
|
|
</html>
|