add survey-likert demos

This commit is contained in:
Josh de Leeuw 2021-08-27 10:55:33 -04:00
parent c8ba33d9ad
commit 629963f4d3
3 changed files with 188 additions and 36 deletions

View File

@ -0,0 +1,67 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/jspsych.js"></script>
<script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/plugins/jspsych-html-button-response.js"></script>
<script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/plugins/jspsych-survey-likert.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/css/jspsych.css"
/>
<style>
.jspsych-btn {
margin-bottom: 10px;
}
</style>
</head>
<body></body>
<script>
var start = {
type: 'html-button-response',
stimulus: '',
choices: ['Run demo']
};
var show_data = {
type: 'html-button-response',
stimulus: function() {
var trial_data = jsPsych.data.getLastTrialData().values();
var trial_json = JSON.stringify(trial_data, null, 2);
return `<p style="margin-bottom:0px;"><strong>Trial data:</strong></p>
<pre style="margin-top:0px;text-align:left;">${trial_json}</pre>`;
},
choices: ['Repeat demo']
};
var trial = {
type: 'survey-likert',
questions: [
{
prompt: "I like vegetables.",
labels: [
"Strongly Disagree",
"Disagree",
"Neutral",
"Agree",
"Strongly Agree"
]
}
]
};
var trial_loop = {
timeline: [trial, show_data],
loop_function: function() {
return true;
}
};
if (typeof jsPsych !== "undefined") {
jsPsych.init({
timeline: [start, trial_loop]
});
} else {
document.body.innerHTML = '<div style="text-align:center; margin-top:50%; transform:translate(0,-50%);">You must be online to view the plugin demo.</div>';
}
</script>
</html>

View File

@ -0,0 +1,69 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/jspsych.js"></script>
<script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/plugins/jspsych-html-button-response.js"></script>
<script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/plugins/jspsych-survey-likert.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/css/jspsych.css"
/>
<style>
.jspsych-btn {
margin-bottom: 10px;
}
</style>
</head>
<body></body>
<script>
var start = {
type: 'html-button-response',
stimulus: '',
choices: ['Run demo']
};
var show_data = {
type: 'html-button-response',
stimulus: function() {
var trial_data = jsPsych.data.getLastTrialData().values();
var trial_json = JSON.stringify(trial_data, null, 2);
return `<p style="margin-bottom:0px;"><strong>Trial data:</strong></p>
<pre style="margin-top:0px;text-align:left;">${trial_json}</pre>`;
},
choices: ['Repeat demo']
};
var likert_scale = [
"Strongly Disagree",
"Disagree",
"Neutral",
"Agree",
"Strongly Agree"
];
var trial = {
type: 'survey-likert',
questions: [
{prompt: "I like vegetables.", name: 'Vegetables', labels: likert_scale},
{prompt: "I like fruit.", name: 'Fruit', labels: likert_scale},
{prompt: "I like meat.", name: 'Meat', labels: likert_scale},
],
randomize_question_order: true
};
var trial_loop = {
timeline: [trial, show_data],
loop_function: function() {
return true;
}
};
if (typeof jsPsych !== "undefined") {
jsPsych.init({
timeline: [start, trial_loop]
});
} else {
document.body.innerHTML = '<div style="text-align:center; margin-top:50%; transform:translate(0,-50%);">You must be online to view the plugin demo.</div>';
}
</script>
</html>

View File

@ -27,29 +27,37 @@ question_order | array | An array with the order of questions. For example `[2,0
## Examples ## Examples
#### Basic example ???+ example "Single Question"
=== "Code"
```javascript ```javascript
var scale_1 = [ var trial = {
type: 'survey-likert',
questions: [
{
prompt: "I like vegetables.",
labels: [
"Strongly Disagree", "Strongly Disagree",
"Disagree", "Disagree",
"Neutral", "Neutral",
"Agree", "Agree",
"Strongly Agree" "Strongly Agree"
]; ]
}
var likert_page = {
type: 'survey-likert',
questions: [
{prompt: "I like vegetables.", labels: scale_1}
] ]
}; };
``` ```
#### Multiple questions in a random order === "Demo"
<div style="text-align:center;">
<iframe src="../demos/jspsych-survey-likert-demo1.html" width="90%;" height="500px;" frameBorder="0"></iframe>
</div>
<a target="_blank" rel="noopener noreferrer" href="../demos/jspsych-survey-likert-demo1.html">Open demo in new tab</a>
???+ example "Multiple questions in a random order"
=== "Code"
```javascript ```javascript
var scale_1 = [ var likert_scale = [
"Strongly Disagree", "Strongly Disagree",
"Disagree", "Disagree",
"Neutral", "Neutral",
@ -57,14 +65,22 @@ var scale_1 = [
"Strongly Agree" "Strongly Agree"
]; ];
var likert_page = { var trial = {
type: 'survey-likert', type: 'survey-likert',
questions: [ questions: [
{prompt: "I like vegetables.", name: 'Vegetables', labels: scale_1}, {prompt: "I like vegetables.", name: 'Vegetables', labels: likert_scale},
{prompt: "I like fruit.", name: 'Fruit', labels: scale_1}, {prompt: "I like fruit.", name: 'Fruit', labels: likert_scale},
{prompt: "I like meat.", name: 'Meat', labels: scale_1}, {prompt: "I like meat.", name: 'Meat', labels: likert_scale},
{prompt: "I like dairy.", name: 'Dairy', labels: scale_1}
], ],
randomize_question_order: true randomize_question_order: true
}; };
``` ```
=== "Demo"
<div style="text-align:center;">
<iframe src="../demos/jspsych-survey-likert-demo2.html" width="90%;" height="500px;" frameBorder="0"></iframe>
</div>
<a target="_blank" rel="noopener noreferrer" href="../demos/jspsych-survey-likert-demo2.html">Open demo in new tab</a>