mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
25 lines
605 B
HTML
25 lines
605 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>jsPsychPluginFreeSortOrdered Example</title>
|
|
<script src="https://unpkg.com/jspsych"></script>
|
|
<!-- Load the published plugin package here, e.g.
|
|
<script src="https://unpkg.com/plugin-free-sort-ordered"></script>
|
|
<script src="../dist/index.browser.js"></script> -->
|
|
<script src="../dist/index.browser.js"></script>
|
|
<link rel="stylesheet" href="https://unpkg.com/jspsych/css/jspsych.css">
|
|
</head>
|
|
|
|
<body></body>
|
|
<script>
|
|
const jsPsych = initJsPsych();
|
|
|
|
const trial = {
|
|
type: jsPsychPluginFreeSortOrdered
|
|
};
|
|
|
|
jsPsych.run([trial])
|
|
</script>
|
|
|
|
</html> |