mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
28 lines
648 B
HTML
28 lines
648 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<script src="../jspsych.js"></script>
|
|
<script src="../plugins/jspsych-survey-likert.js"></script>
|
|
<link rel="stylesheet" href="../css/jspsych.css"></link>
|
|
</head>
|
|
<body></body>
|
|
<script>
|
|
|
|
var scale = ["Strongly Disagree", "Disagree", "Neutral", "Agree", "Strongly Agree"];
|
|
|
|
var likert_trial = {
|
|
type: 'survey-likert',
|
|
nested: [{question: "I like vegetables.", labels: scale}, {question: "I like fruit.", labels: scale}],
|
|
required: true,
|
|
};
|
|
|
|
jsPsych.init({
|
|
timeline: [likert_trial],
|
|
on_finish: function() { jsPsych.data.displayData(); }
|
|
});
|
|
|
|
|
|
</script>
|
|
</html>
|