mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-13 09:08:13 +00:00
36 lines
872 B
HTML
36 lines
872 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<script src="js/jquery.min.js"></script>
|
|
<script src="js/snap.svg-min.js"></script>
|
|
<script src="../jspsych.js"></script>
|
|
<script src="../plugins/jspsych-visual-search-circle.js"></script>
|
|
<link rel="stylesheet" href="../css/jspsych.css"></link>
|
|
</head>
|
|
<body>
|
|
<div id="jspsych-target"></div>
|
|
</body>
|
|
<script>
|
|
|
|
var trial = {
|
|
type: 'visual-search-circle',
|
|
target: 'img/normalN.gif',
|
|
foil: 'img/backwardN.gif',
|
|
fixation_image: 'img/fixation.gif',
|
|
target_present: true,
|
|
set_size: 4
|
|
};
|
|
|
|
function start(){
|
|
jsPsych.init({
|
|
display_element: $('#jspsych-target'),
|
|
timeline: [trial],
|
|
on_finish: function() { jsPsych.data.displayData(); }
|
|
});
|
|
}
|
|
|
|
jsPsych.preloadImages(['img/normalN.gif', 'img/backwardN.gif', 'img/fixation.gif'], start);
|
|
|
|
</script>
|
|
</html>
|