Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>My experiment</title>
  5. <script src="jspsych-6/jspsych.js"></script>
  6. <script src="jspsych-6/plugins/jspsych-html-keyboard-response.js"></script>
  7. <script src="jspsych-6/plugins/jspsych-image-keyboard-response.js"></script>
  8. <script src="jspsych-6/plugins/jspsych-audio-keyboard-response.js"></script>
  9. <link href="jspsych-6/css/jspsych.css" rel="stylesheet" type="text/css"></link>
  10. </head>
  11. <body></body>
  12. <script>
  13. /*create timeline*/
  14.  
  15. var timeline = [];
  16.  
  17. var noun_audio_trial = {
  18. type: 'audio-keyboard-response',
  19. timeline: [
  20. {stimulus: 'stimuli/audio/final-stress/uhu.wav'},
  21. {stimulus: 'stimuli/audio/final-stress/eje.wav'},
  22. {stimulus: 'stimuli/audio/final-stress/iti.wav'}
  23. ]
  24.  
  25. };
  26. timeline.push(noun_audio_trial);
  27.  
  28. /* start the experiment */
  29. jsPsych.init({
  30. timeline: timeline
  31. });
  32.  
  33. </script>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement