2017-04-14 76 views

回答

3

你可以調整iframe的大小,但是你修改內容的選項是有限的 - CSS override body style for content in iframe?

下面是我通常整合提供博特框架的iframe與尺寸控制:

<div id="bot"> 
    <iframe src="https://webchat.botframework.com/embed/..." 
      style="height: 600px; width: 500px; resize: both;"> 
    </iframe> 
</div> 

如果你想通過網絡進行聊天是如何使更多的控制,你可能想看看其他更高級的選項整合他們的網絡聊天。閱讀更多關於他們的github頁面:https://github.com/Microsoft/BotFramework-WebChat

相關問題