-
Hello Josh and all Contributors, Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi Nega, I think the simplest way to do this with the current set of plugins is to use the var trait_question = {
type: 'html-slider-response',
stimulus: `<div style="width:800px; height: 200px; position: relative;">
<img src="leftSideImage.png" style="height:200px; left:0px; position: absolute;"></img>
<img src="rightSideImage.png" style="height:200px; right:0px; position: absolute;"></img>
</div>`,
slider_width: 800
} You could use the other parameters of the slider-response plugin to control things like how many unique steps there are in the scale if you want to make it more like a Likert scale and less like a continuous rating. |
Beta Was this translation helpful? Give feedback.
Hi Nega,
I think the simplest way to do this with the current set of plugins is to use the
html-slider-response
plugin and make your stimulus two images that are aligned to the left and right of the page. Something like this:You could use the other parameters of the slider-response plugin to control things like how many unique steps there are in t…