jsPsych/examples/jspsych-similarity.html
2016-12-09 21:25:56 -05:00

34 lines
690 B
HTML

<!DOCTYPE html>
<html>
<head>
<script src="js/jquery-ui.min.js"></script>
<script src="../jspsych.js"></script>
<script src="../plugins/jspsych-similarity.js"></script>
<link rel="stylesheet" href="css/jquery-ui.css"></link>
<link rel="stylesheet" href="../css/jspsych.css"></link>
<style>
img {
width: 300px;
}
</style>
</head>
<script>
var block_1 = {
type: 'similarity',
stimuli: ['img/happy_face_1.jpg', 'img/sad_face_1.jpg'],
prompt: '<p class="center-content">How similar are these pictures?</p>'
}
jsPsych.init({
timeline: [block_1],
on_finish: function() {
jsPsych.data.displayData();
}
});
</script>
</html>