mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-11 03:30:54 +00:00
27 lines
657 B
HTML
27 lines
657 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',
|
|
questions: [{prompt: "I like vegetables.", labels: scale, required: true}, {prompt: "I like fruit.", labels: scale, required: true}],
|
|
};
|
|
|
|
jsPsych.init({
|
|
timeline: [likert_trial],
|
|
on_finish: function() { jsPsych.data.displayData(); }
|
|
});
|
|
|
|
|
|
</script>
|
|
</html>
|