web版仿微信聊天界面|h5仿微信電腦端案例開發

来源:https://www.cnblogs.com/xiaoyan2017/archive/2018/05/26/9092612.html
-Advertisement-
Play Games

前幾天開發了一款手機端h5仿微信聊天,人唯有不停學習才能進步,這段時間倒騰著整理了下之前項目,又重新在原先的那版基礎上開發了一款仿微信聊天電腦端web版本,聊天頁面又重新優化了多圖預覽、視頻播放,右鍵菜單menu,聊天底部編輯器模塊重新優化源碼,彈窗則是繼續使用之前自己開發的wcPop.js,具體看 ...


前幾天開發了一款手機端h5仿微信聊天,人唯有不停學習才能進步,這段時間倒騰著整理了下之前項目,又重新在原先的那版基礎上開發了一款仿微信聊天電腦端web版本,聊天頁面又重新優化了多圖預覽、視頻播放,右鍵菜單menu,聊天底部編輯器模塊重新優化源碼,彈窗則是繼續使用之前自己開發的wcPop.js,具體看項目效果圖吧!

效果圖:

// ...表情、選擇區切換
$(".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();
});

// ...處理編輯器信息
var $editor = $(".J__wcEditor"), _editor = $editor[0];
function surrounds(){
    setTimeout(function () { //chrome
        var sel = window.getSelection();
        var anchorNode = sel.anchorNode;
        if (!anchorNode) return;
        if (sel.anchorNode === _editor ||
            (sel.anchorNode.nodeType === 3 && sel.anchorNode.parentNode === _editor)) {
            
            var range = sel.getRangeAt(0);
            var p = document.createElement("p");
            range.surroundContents(p);
            range.selectNodeContents(p);
            range.insertNode(document.createElement("br")); //chrome
            sel.collapse(p, 0);
            
            (function clearBr() {
                var elems = [].slice.call(_editor.children);
                for (var i = 0, len = elems.length; i < len; i++) {
                    var el = elems[i];
                    if (el.tagName.toLowerCase() == "br") {
                        _editor.removeChild(el);
                    }
                }
                elems.length = 0;
            })();
        }
    }, 10);
}
// 格式化編輯器包含標簽
_editor.addEventListener("click", function () {
    //$(".wc__choose-panel").hide();
}, true);
_editor.addEventListener("focus", function(){
    surrounds();
}, true);
_editor.addEventListener("input", function(){
    surrounds();
}, false);
// 點擊表情
$("#J__swiperEmotion").on("click", ".face-list span img", function(){
    var that = $(this), range;

    if(that.hasClass("face")){ //小表情
        var img = that[0].cloneNode(true);
        _editor.focus();
        _editor.blur(); //輸入表情時禁止輸入法

        setTimeout(function(){
            if(document.selection && document.selection.createRange){
                document.selection.createRange().pasteHTML(img);
            }else if(window.getSelection && window.getSelection().getRangeAt){
                range = window.getSelection().getRangeAt(0);
                range.insertNode(img);
                range.collapse(false);

                var sel = window.getSelection();
                sel.removeAllRanges();
                sel.addRange(range);
            }
        }, 10);
    }else if(that.hasClass("del")){ //刪除
        _editor.focus();
        _editor.blur(); //輸入表情時禁止輸入法

        setTimeout(function(){
            range = window.getSelection().getRangeAt(0);
            range.collapse(false);

            var sel = window.getSelection();
            sel.removeAllRanges();
            sel.addRange(range);
            document.execCommand("delete");
        }, 10);
    } else if(that.hasClass("lg-face")){ //大表情
        var _img = that.parent().html();
        var _tpl = [
            '<li class="me">\
                <div class="content">\
                    <p class="author">Nice奶思</p>\
                    <div class="msg lgface">'+ _img + '</div>\
                </div>\
                <a class="avatar" href="微聊(好友主頁).html"><img src="img/uimg/u__chat-img14.jpg" /></a>\
            </li>'
        ].join("");
        $chatMsgList.append(_tpl);

        wchat_ToBottom();
    }
});
<!-- //微聊消息上牆面板 -->
<div class="wc__chatMsg-panel flex1">
    <div class="wc__slimscroll2">
        <div class="chatMsg-cnt">
            <ul class="clearfix" id="J__chatMsgList">
                <li class="time"><span>2017年12月28日 晚上21:10</span></li>
                <li class="notice"><span>"<a href="#">Aster</a>"通過掃描"<a href="#">張小龍</a>"分享的二維碼加入群聊</span></li>
                <li class="time"><span>2017年12月28日 晚上23:15</span></li>
                <li class="notice"><span>"<a href="#">雷軍</a>"通過掃描"<a href="#">李彥巨集</a>"分享的二維碼加入群聊</span></li>
                <li class="notice"><span>當前群聊人數較多,已顯示群成員昵稱,同時為了信息安全,請註意聊天隱私</span></li>

                <li class="time"><span>2017年12月31日 晚上22:30</span></li>
                <!-- 別人-->
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img01.jpg" /></a>
                    <div class="content">
                        <p class="author">馬雲(老子天下第一)</p>
                        <div class="msg">
                            hello 各位女士、先生,歡迎大家來到達摩派,進群後記得修改備註哈~~ 名字+公司/職業/機構 <img class="face" src="img/emotion/face01/29.png"><img class="face" src="img/emotion/face01/71.png"><img class="face" src="img/emotion/face01/75.png">
                        </div>
                    </div>
                </li>
                <!--自己-->
                <li class="me">
                    <div class="content">
                        <p class="author">Nice奶思</p>
                        <div class="msg">
                            麽麽噠,馬總發個紅包唄!
                        </div>
                    </div>
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img14.jpg" /></a>
                </li>
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img02.jpg" /></a>
                    <div class="content">
                        <p class="author">MR(馬蓉 ▪ ☀☼㈱)</p>
                        <div class="msg">
                            馬總,晚上好哇,還木休息呢。我還在景區度假呢,棒棒! <img class="face" src="img/emotion/face01/69.png">
                        </div>
                    </div>
                </li>
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img02.jpg" /></a>
                    <div class="content">
                        <p class="author">MR(馬蓉 ▪ ☀☼㈱)</p>
                        <div class="msg picture">
                            <img class="img__pic" src="img/placeholder/wchat__img03.jpg" />
                        </div>
                    </div>
                </li>
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img12.jpg" /></a>
                    <div class="content">
                        <p class="author">Flowers(楊迪)</p>
                        <div class="msg">
                            哼,要紅包。 <img class="face" src="img/emotion/face01/63.png">
                        </div>
                    </div>
                </li>
                <li class="time"><span>1月1日 早上02:00</span></li>
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img04.jpg" /></a>
                    <div class="content">
                        <p class="author">Xlong(張小龍)</p>
                        <div class="msg">
                            小程式後臺新增推廣功能,支持開發者添加與業務相關的自定義關鍵詞!<br>
                            <a href="https://mp.weixin.qq.com/cgi-bin/wx">https://mp.weixin.qq.com/cgi-bin/wx</a>
                        </div>
                    </div>
                </li>
                <li class="me">
                    <div class="content">
                        <p class="author">Nice奶思</p>
                        <div class="msg">
                            小龍哥好敬業哇,牛牛牛!<img class="face" src="img/emotion/face01/79.png">
                        </div>
                    </div>
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img14.jpg" /></a>
                </li>
                <li class="me">
                    <div class="content">
                        <p class="author">Nice奶思</p>
                        <div class="msg video">
                            <img class="img__video" src="img/placeholder/wchat__video02-poster.jpg" videoUrl="img/placeholder/wchat__video02-Y7qk5uVcNcFJIY8O4mKzDw.mp4" />
                        </div>
                    </div>
                    <a class="avatar" href="好友主頁(詳細資料).html">
                        <img src="img/uimg/u__chat-img14.jpg" />
                    </a>
                </li>
                <li class="time"><span>2月25日 早上09:48</span></li>
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img06.jpg" /></a>
                    <div class="content">
                        <p class="author">Robin(李彥巨集)</p>
                        <div class="msg">
                            早上好,各位,這次人機交互線下活動的視頻及PPT預計明天可以公開啦 <img class="face" src="img/emotion/face01/4.png">
                        </div>
                    </div>
                </li>
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img15.jpg" /></a>
                    <div class="content">
                        <p class="author">King(李嘉誠)</p>
                        <div class="msg">
                            這個不錯,支持下~ <img class="face" src="img/emotion/face01/42.png">
                        </div>
                    </div>
                </li>
                <li class="time"><span>3月12日 下午14:28</span></li>
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img03.jpg" /></a>
                    <div class="content">
                        <p class="author">Jay(周傑倫)</p>
                        <div class="msg">
                            我的新專輯《告白氣球》將於6.1上線,到時希望大家多多支持啦~ <img class="face" src="img/emotion/face01/66.png">
                        </div>
                    </div>
                </li>
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img11.jpg" /></a>
                    <div class="content">
                        <p class="author">Luci(王巧巧)</p>
                        <div class="msg picture">
                            <img class="img__pic" src="img/placeholder/wchat__img01.jpg" />
                        </div>
                    </div>
                </li>
                <li class="time"><span>"馬雲(老子天下第一)" 撤回了一條消息</span></li>
                <li class="others">
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img11.jpg" /></a>
                    <div class="content">
                        <p class="author">Luci(王巧巧)</p>
                        <div class="msg video">
                            <img class="img__video" src="img/placeholder/wchat__video01-poster.jpg" videoUrl="img/placeholder/wchat__video01-Y7qk5uVcNcFJIY8O4mKzDw.mp4" />
                        </div>
                    </div>
                </li>
                <li class="time"><span>"Luci(王巧巧)" 已被移出群聊</span></li>
                <li class="me">
                    <div class="content">
                        <p class="author">Nice奶思</p>
                        <div class="msg picture">
                            <img class="img__pic" src="img/placeholder/wchat__img02.jpg">
                        </div>
                    </div>
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img14.jpg" /></a>
                </li>
                <li class="me">
                    <div class="content">
                        <p class="author">Nice奶思</p>
                        <div class="msg">
                            北京新世紀飯店發放福利啦,免費領取VIP會員,大家快去參與吧。
                        </div>
                    </div>
                    <a class="avatar" href="好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img14.jpg" /></a>
                </li>
            </ul>
        </div>
    </div>
</div>

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 主要思想是這樣的:將倒計時CountDownTimer放在Service裡面進行,每過一秒就一條發廣播,在主Activity里註冊廣播,收到廣播後更新UI。 一、寫一個類CodeTimerService繼承自Service,重寫onStartCommand(...)方法。 先瞭解一下CountDow ...
  • iOS設備內部都有一個iPod媒體庫,在這個媒體庫中包含了音頻和視頻文件,它的來源主要是蘋果公司的iTunes Store,現在蘋果公司的iTunes Store內容很多,但能夠下載到iPod媒體庫的文件形式就是音頻和視頻文件。 從程式員的角度看,iPad,iPod touch還是iPhone它們訪 ...
  • <!doctype html><html lang="en"> <head> <meta charset="UTF-8"> <meta name="Generator" content="EditPlus®"> <meta name="Author" content=""> <meta name=" ...
  • java && javascript && php 轟炸!!!恢復 1.javascript簡介 *是基於對象和時間的驅動語言,應用於客戶端。 基於對象: **提供好了很多對象,可以直接拿過來使用。 事件驅動: **基於事件本來要求做出動態效果。 客戶端: **專門指運行於客戶端。 2.javasc ...
  • java && javascript && php 轟炸!!!恢復 1.javascript簡介 *是基於對象和時間的驅動語言,應用於客戶端。 基於對象: **提供好了很多對象,可以直接拿過來使用。 事件驅動: **基於事件本來要求做出動態效果。 客戶端: **專門指運行於客戶端。 2.javasc ...
  • 變數1 "未知數",本質上相當於一個容器,可以存放任何的數據 2 語法 // 變數定義 var a; // 給變數賦值 a = 456; var 變數名; * 變數名 組成部分: _ $ 字母 數字 第一個字元不能為數字 區分大小寫 比如 a 和 A 是不同的變數名 不能是js的關鍵字和保留字 va ...
  • 針對web應用的攻擊模式 主動攻擊,攻擊者通過直接訪問web資源把攻擊代碼傳入的攻擊模式,需要攻擊者能夠訪問伺服器上的資源,常見有SQL註入攻擊和OS命令註入攻擊; 被動攻擊,利用圈套策略執行攻擊代碼的模式,攻擊者不直接攻擊web應用,常見有XSS和CSRF; SQL註入 把SQL命令插入到表單提交 ...
  • 個人學習Java的第一個完成的項目,分享給大家。有不好的地方,請多指教。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...