是否可以调整 botframework 的聊天宽度?目前我正在模拟器上进行测试。基本上我想让我的机器人聊天更宽。正如您在图片中看到的,尽管我增加了列的大小、添加了更多的列等等,但聊天宽度保持不变。目前使用自适应卡。
问问题
1098 次
1 回答
0
If you are using the iframe embed, you can edit the width of the iframe HTML element by adding the style in-line:
<div id="bot">
<iframe src="https://webchat.botframework.com/embed/..."
style="height: 600px; width: 500px; resize: both;">
</iframe>
Alternatively, if you want greater control you can edit the styling directly to the Web Chat source code -
于 2017-12-13T00:12:21.100 回答