// 关闭弹窗功能
function closePopup() {
document.getElementById('popup-overlay').style.display = 'none';
}
// 自动打开Crisp客服
function autoOpenCustomerService() {
// 使用Crisp的API打开客服聊天窗口
if (window.$crisp) {
window.$crisp.push(["do", "chat:open"]);
}
}
// 页面加载完成后显示弹窗
window.onload = function() {
// 显示弹窗的背景
document.getElementById('popup-overlay').style.display = 'flex';
// 使用动画使弹窗渐现并放大
setTimeout(function() {
document.getElementById('popup-overlay').style.opacity = '1';
document.getElementById('popup-content').style.transform = 'scale(1)';
}, 100);
// 如果用户未点击弹窗,延迟一定时间自动点击客服图标
setTimeout(autoOpenCustomerService, 12000); // 3秒后自动点击
}
发表评论
2024-11-22 14:41:47 回复该评论
2024-11-22 14:41:47 回复该评论
2024-11-22 14:41:47 回复该评论
2024-11-22 14:41:47 回复该评论
2024-11-22 14:41:47 回复该评论
发表评论: