jsPsych/examples/jspsych-instructions.html
2017-06-21 23:48:08 -04:00

28 lines
595 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"></link>
</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
}
jsPsych.init({
timeline: [trial],
on_finish: function(){ jsPsych.data.displayData(); }
});
</script>
</html>