jsPsych/examples/jspsych-instructions.html
2020-05-26 20:20:03 -05:00

27 lines
604 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-instructions.js"></script>
<link rel="stylesheet" href="../css/jspsych.css">
</head>
<body></body>
<script>
var trial = {
type: 'instructions',
pages: ['Welcome to the experiment. Click next to begin.',
'This is the second page of instructions.',
'This is the final page.'],
show_clickable_nav: true,
show_page_number: true
}
jsPsych.init({
timeline: [trial],
on_finish: function(){ jsPsych.data.displayData(); }
});
</script>
</html>