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