我使用tawkto与访客聊天。它在我的页面加载时显示。当访问者滚动到底部时,我想要显示。有可能吗?
答案 0 :(得分:1)
首先使聊天div显示:none,然后使用脚本。
<style>
#tawkchat-iframe-container{
display: none !important;
}
</style>
<script>
$("body").scroll(function(){
$("#tawkchat-iframe-container").show();
});
</script>
答案 1 :(得分:0)
在像
这样的div中关闭你的元素<div id="chatbox">
<!-- whatever here-->
</div>
然后设计它
#chatbox {
position: fixed;
bottom: 0; right: 0;
}
并确保div是<body>
元素的直接子元素