mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-12 08:38:11 +00:00
27 lines
648 B
HTML
27 lines
648 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<script src="js/jquery.min.js"></script>
|
|
<script src="js/jquery-ui.min.js"></script>
|
|
<script src="../jspsych.js"></script>
|
|
<script src="../plugins/jspsych-free-sort.js"></script>
|
|
<link rel="stylesheet" href="css/jquery-ui.css"></link>
|
|
<link rel="stylesheet" href="../css/jspsych.css"></link>
|
|
</head>
|
|
<script>
|
|
|
|
var trials = {
|
|
type: 'free-sort',
|
|
stimuli: ['img/happy_face_1.jpg','img/happy_face_2.jpg','img/happy_face_3.jpg','img/happy_face_4.jpg']
|
|
};
|
|
|
|
|
|
jsPsych.init({
|
|
timeline: [trials],
|
|
on_finish: function(){jsPsych.data.displayData();}
|
|
});
|
|
|
|
|
|
</script>
|
|
</html>
|