-
Hi, I'm trying to display two images and let subjects pick one image. I thought "stimulus: [ 'a.png' , 'b.png'] " would work, but it didn't work. Any help will be greatly appreciated! Thank you! |
Beta Was this translation helpful? Give feedback.
Answered by
jodeleeuw
Jul 1, 2020
Replies: 2 comments 3 replies
-
I think what the author wrote in this discussion post will be helpful! |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi @gkim132, You can use HTML to put two images on the screen: var trial = {
type: 'html-keyboard-response',
stimulus: '<img src="a.png"></img>'+
'<img src="b.png"></img>'
} |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
jodeleeuw
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @gkim132,
You can use HTML to put two images on the screen: