2

我正在尝试使用 jsPsych html-button-response 插件(https://www.jspsych.org/plugins/jspsych-html-button-response/)显示两个按钮。我使用图像作为按钮而不是文本。我在“选择:”选项中将它们指定为choices: ["<img src='" + ButtonLeft+ "'>", "<img src='" + ButtonRight+ "'>"],.

默认情况下,按钮显示在我的刺激下方的中心。相反,我想将它们显示在我的刺激物的顶部(这又由一堆重叠的图像组成 - 背景+一些项目),一个在左侧,另一个在右侧,相对于特定位置我的背景。按钮的默认样式是:

 .jspsych-btn {
  display: inline-block;
  padding: 6px 12px;
  margin: 0px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Open Sans', 'Arial', sans-serif;
  cursor: pointer;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

如何以我想要的方式显示按钮?非常感谢您!

4

1 回答 1

1

更改 button_html 参数就可以了!

button_html: ['<button class="jspsych-btn" style = "position:absolute; left:284.5px; top: 270px">%choice%</button>', '<button class="jspsych-btn" style = "position:absolute; right:284.5px; top: 270px">%choice%</button>']
于 2020-07-17T12:42:04.877 回答