Spaces:
Running
on
Zero
Running
on
Zero
File size: 448 Bytes
20e3524 cee9ec6 20e3524 |
1 2 3 4 5 6 7 8 9 10 11 12 |
<script>
function adjustChatbotHeight() {
var chatbot = document.querySelector('#chatbot');
if (chatbot) {
chatbot.style.height = window.innerHeight * 0.4 + 'px';
}
}
// ページ読み込み時と画面サイズ変更時にチャットボットの高さを調整
window.addEventListener('load', adjustChatbotHeight);
window.addEventListener('resize', adjustChatbotHeight);
</script> |