Skip to content

引入事例

如下事例,见右下角效果

js
<script src="https://kf.ongl.cn/static/xchat/js/xchat.js"></script>
<script>
XChat.init({
    type: 'service',    // 客服端
    success: box => {
        box.querySelector('.xchat-start').style.bottom = '140px'
    }
})
XChat.init({
    text: 'AI助手',
    theme: '#FF8C00',
    token: 'xxxxxxx',   // AI客服TOKEN信息
    root: 'https://kf.ongl.cn',
    success: box => {
        box.querySelector('.xchat-start').style.bottom = '80px'
    }
})
XChat.init({
    type: 'visitor',    // 访客端
    theme: 'green',
    text: '在线咨询',
    sendVoice: 1,
    sendImage: 1,
    sendFile: 1
})
</script>