h5在线1v1客服|web在线客服系统|h5即时聊天

网上有很多环信、美恰之类的客服系统,最近也使用h5+css3+fontJs+swiper+wcPop等技术架构开发了一个在线客服(1v1沟通聊天),可以应用到在线临时聊天、在线咨询等情景。实现了消息、表情(含动图),图片、附件发送及商品的推送。

项目截图:

h5在线1v1客服|web在线客服系统|h5即时聊天_第1张图片

如下图:可点击“Apple官方旗舰店”或机器人按钮发起在线聊天,聊天窗口以向上弹出展示;

h5在线1v1客服|web在线客服系统|h5即时聊天_第2张图片

如下图:长按聊天信息,可出行菜单提示,操作更加方便简洁, 另外聊天背景可以自行设置;

h5在线1v1客服|web在线客服系统|h5即时聊天_第3张图片

如下图:聊天表情以弹窗定位形式展示,含有表情及动图,让聊天内容更加丰富;

h5在线1v1客服|web在线客服系统|h5即时聊天_第4张图片

h5在线1v1客服|web在线客服系统|h5即时聊天_第5张图片

如下图:聊天客服可根据顾客需求,推送一些热门商品;

h5在线1v1客服|web在线客服系统|h5即时聊天_第6张图片

h5在线1v1客服|web在线客服系统|h5即时聊天_第7张图片

h5在线1v1客服|web在线客服系统|h5即时聊天_第8张图片

h5在线1v1客服|web在线客服系统|h5即时聊天_第9张图片

h5在线1v1客服|web在线客服系统|h5即时聊天_第10张图片

// 发送信息
var $chatMsgList = $("#J__chatMsgList");
function isEmpty(){
    var html = $editor.html();
    html = html.replace(//ig, "\r\n");
    html = html.replace(/<[^img].*?>/ig, "");
    html = html.replace(/ /ig, "");
    return html.replace(/\r\n|\n|\r/, "").replace(/(?:^[ \t\n\r]+)|(?:[ \t\n\r]+$)/g, "") == "";
}
$(".J__wchatSubmit").on("click", function(){
    // 判断内容是否为空
    if(isEmpty()) return;

    var html = $editor.html();
    var reg = /(http:\/\/|https:\/\/)((\w|=|\?|\.|\/|&|-)+)/g;
    html = html.replace(reg, "$1$2");
    var msgTpl = [
        '
  • \
    \

    游客

    \
    '+ html +'
    \
    \ \
  • ' ].join(""); $chatMsgList.append(msgTpl); $(".wc__choose-panel").hide(); // 清空聊天框并获取焦点(处理输入法和表情 - 聚焦) if(!$(".wc__choose-panel").is(":hidden")){ $editor.html(""); }else{ $editor.html("").focus().trigger("click"); } wchat_ToBottom(); }); // ...图片选择窗口 $("#J__chooseImg").on("change", function () { $(".wc__choose-panel").hide(); var file = this.files[0]; var reader = new FileReader(); reader.readAsDataURL(file); reader.onload = function (e) { var _img = this.result; var _tpl = [ '
  • \
    \

    游客

    \
    " />
    \
    \ \
  • ' ].join(""); $chatMsgList.append(_tpl); wchat_ToBottom(); } }); // ...文件选择窗口 $("#J__chooseFile").on("change", function () { $(".wc__choose-panel").hide(); var file = this.files[0], fileSuffix = /\.[^\.]+/.exec(file.name).toString(), fileExt = fileSuffix.substr(fileSuffix.indexOf('.') + 1, fileSuffix.length).toLowerCase(); console.log(fileExt); var fileTypeArr = ['jpg', 'jpeg', 'png', 'gif', 'txt', 'rar', 'zip', 'pdf', 'docx', 'xls']; if ($.inArray(fileExt, fileTypeArr) < 0) { wcPop({ content: '附件只支持jpg、jpeg、png、gif、txt、rar、zip、pdf、docx、xls格式的文件', time: 2 }); return; } var reader = new FileReader(); reader.readAsDataURL(file); reader.onload = function (e) { var _file = this.result; console.log(_file); var _tpl = [ '
  • \
    \

    游客

    \
    \ \ \

    '+ file.name + '

    \

    '+ formateSize(file.size) + '

    \
    \ ">\
    \
    \ \
  • ' ].join(""); $chatMsgList.append(_tpl); wchat_ToBottom(); } /** 格式化文件大小显示 value : file文件的大小值 */ formateSize = function (value) { if (null == value || value == '') { return "0 Bytes"; } var unitArr = new Array("B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"); var index = 0; var srcsize = parseFloat(value); index = Math.floor(Math.log(srcsize) / Math.log(1024)); var size = srcsize / Math.pow(1024, index); size = size.toFixed(2); //保留的小数位数 return size + unitArr[index]; } });

    h5在线1v1客服|web在线客服系统|h5即时聊天_第11张图片

    你可能感兴趣的:(h5在线1v1客服|web在线客服系统|h5即时聊天)