最后是否可以在网络聊天中固定输入 window(Microsoft Bot Framework)?

Is it possible to pin the input window in Web Chat at the end (Microsoft Bot Framework)?

我正在使用 Microsoft Bot Framework 构建聊天机器人。 目前我正在设计网络聊天 (Webchat V4 -> https://github.com/microsoft/BotFramework-WebChat) 但是,我注意到,对于每条新消息,输入 window 都会向下移动,我必须向下滚动才能写另一条消息。

现在回答我的问题:是否可以将输入 window 固定在底部并且只有聊天滚动条?

-

可以,您可以使用 CSS 固定它。只需在您的 CSS 中引用网络聊天 class,您就可以对其进行自定义。以下是我在 Office Fabric UI 面板中实现的内容的摘录。

#webchat {
  margin: 0 auto;
  clear: both;
  padding: 0 10px;
  position: fixed;
  bottom: 0;
  top: 38px;
  padding-bottom: 53px;
  max-width: 87%;
  max-height: 90%;

}

您还有内置的样式选项,这非常有用