博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
h5移动端聊天室|仿微信界面聊天室|h5多人聊天室
阅读量:6097 次
发布时间:2019-06-20

本文共 2250 字,大约阅读时间需要 7 分钟。

 今年的FIFA世界杯甚是精彩,最近兴致高涨就利用HTML5开发了一个手机端仿微信界面聊天室,该h5聊天室采用750px全新伸缩flex布局,以及使用rem响应式配合fontsize.js,页面弹窗则是使用自己开发的;编辑器部分由原先的单一表情新增为动图表情,实现了消息、表情发送 | 大图、视频效果预览 | 仿微信红包、打赏等微交互功能。奋斗

案例截图:

 

// ...滚动聊天区底部function wchat_ToBottom(){    //$(".wc__chatMsg-panel").animate({scrollTop: $("#J__chatMsgList").height()}, 0);    $(".wc__slimscroll2").slimscroll({        scrollBy: $("#J__chatMsgList").height(),        height: 'auto'    });}// ...表情、选择区切换$(".wc__editor-panel").on("click", ".btn", function(){    var that = $(this);    $(".wc__choose-panel").show();    if (that.hasClass("btn-emotion")) {        $(".wc__choose-panel .wrap-emotion").show();        $(".wc__choose-panel .wrap-choose").hide();        // 初始化swiper表情        !emotionSwiper && $("#J__emotionFootTab ul li.cur").trigger("click");    } else if (that.hasClass("btn-choose")) {        $(".wc__choose-panel .wrap-emotion").hide();        $(".wc__choose-panel .wrap-choose").show();    }    wchat_ToBottom();});// ...处理编辑器信息// 格式化编辑器包含标签_editor.addEventListener("click", function () {    //$(".wc__choose-panel").hide();}, true);_editor.addEventListener("focus", function(){    surrounds();}, true);_editor.addEventListener("input", function(){    surrounds();}, false);// 发送信息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 = [ '
  • \
    \

    Nice奶思

    \
    '+ html +'
    \
    \ \
  • ' ].join(""); $chatMsgList.append(msgTpl); // 清空聊天框并获取焦点(处理输入法和表情 - 聚焦) if(!$(".wc__choose-panel").is(":hidden")){ $editor.html(""); }else{ $editor.html("").focus().trigger("click"); } wchat_ToBottom();});

    转载于:https://www.cnblogs.com/xiaoyan2017/p/9266179.html

    你可能感兴趣的文章
    owlcar 用法心得 自定义导航
    查看>>
    数据结构 学习笔记03——栈与队列
    查看>>
    DB2 OLAP函数的使用(转)
    查看>>
    数学之美系列二十 -- 自然语言处理的教父 马库斯
    查看>>
    Android实现自定义位置无标题Dialog
    查看>>
    面试总结
    查看>>
    Chrome浏览器播放HTML5音频没声音的解决方案
    查看>>
    easyui datagrid 行编辑功能
    查看>>
    类,对象与实例变量
    查看>>
    HDU 2818 (矢量并查集)
    查看>>
    【转】php字符串加密解密
    查看>>
    22. linux 常用命令
    查看>>
    ASP.Net 使用GridView模板删除一行的用法
    查看>>
    (十六)字段表集合
    查看>>
    JPGraph
    查看>>
    实验二 Java面向对象程序设计
    查看>>
    ------__________________________9余数定理-__________ 1163______________
    查看>>
    webapp返回上一页 处理
    查看>>
    新安装的WAMP中phpmyadmin的密码问题
    查看>>
    20172303 2017-2018-2 《程序设计与数据结构》第5周学习总结
    查看>>