mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 19:20:55 +00:00
29 lines
585 B
HTML
29 lines
585 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>
|
|
|
|
<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>
|