釘釘h5項目實戰|仿釘釘聊天|h5移動端釘釘案例

来源:https://www.cnblogs.com/xiaoyan2017/archive/2018/09/17/9658933.html
-Advertisement-
Play Games

最近一直著手開發h5仿釘釘項目,使用到了h5+css3+zepto+wcPop2等技術進行開發,實現了消息、表情、動圖發送,仿QQ多人拼合圖像,可以選擇本地圖片,並可以圖片、視頻預覽,仿微信發紅包及打賞功能(點擊 “拆” 會有動畫旋轉動畫),還有類似微信長按消息彈出菜單(智能邊界檢測) h5仿釘釘項 ...


最近一直著手開發h5仿釘釘項目,使用到了h5+css3+zepto+wcPop2等技術進行開發,實現了消息、表情、動圖發送,仿QQ多人拼合圖像,可以選擇本地圖片,並可以圖片、視頻預覽,仿微信發紅包及打賞功能(點擊 “拆” 會有動畫旋轉動畫),還有類似微信長按消息彈出菜單(智能邊界檢測)

h5仿釘釘項目圖:

var $chatMsgList = $("#J__chatMsgList");
// ...編輯器信息
var $editor = $(".J__wdtEditor"), _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);
}

// 定義最後游標位置
var _lastRange = null, _sel = window.getSelection && window.getSelection();
var _rng = {
    getRange: function () {
        if (_sel && _sel.rangeCount > 0) {
            return _sel.getRangeAt(0);
        }
    },
    addRange: function () {
        if (_lastRange) {
            _sel.removeAllRanges();
            _sel.addRange(_lastRange);
        }
    }
}

// 編輯器包含標簽
_editor.addEventListener("click", function () {
    $(".wdt__choose-panel").hide();
}, true);
_editor.addEventListener("focus", function () {
    surrounds();
}, true);
_editor.addEventListener("input", function () {
    surrounds();
}, false);

// ...選擇圖片
$("#J__choosePicture").on("change", function () {
    $(".wdt__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 = [
            '<li class="me">\
                <div class="content">\
                    <p class="author">風鈴子</p>\
                    <div class="msg picture"><img class="img__pic" src="'+ _img +'" /></div>\
                </div>\
                <a class="avatar" href="微釘-好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img07.jpg" /></a>\
            </li>'
        ].join("");
        $chatMsgList.append(_tpl);

        setTimeout(function(){wchat_ToBottom();}, 17);
    }
});

// ...選擇文件
$("#J__chooseFile").on("change", function () {
    $(".wdt__choose-panel").hide();

    var file = this.files[0], fileSuffix = /\.[^\*]+/.exec(file.name).toString(), fileExt = fileSuffix.substr(fileSuffix.lastIndexOf('.') + 1, fileSuffix.length).toLowerCase();
    console.log(fileSuffix);
    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 = [
            '<li class= "me">\
                <div class="content">\
                    <p class="author">風鈴子</p>\
                    <div class="msg attachment">\
                        <div class="card flexbox flex-alignc">\
                            <span class="ico-bg wdt__bg01"><i class="iconfont icon-fujian"></i></span>\
                            <div class="file-info flex1" title="'+ file.name +'">\
                                <p class="name">'+ file.name +'</p><p class="size">'+ formateSize(file.size) +'</p>\
                            </div>\
                            <a class="btn-down" href="'+ _file +'" target="_blank" download="'+ file.name +'"><i class="iconfont icon-down"></i></a>\
                        </div>\
                    </div>\
                </div>\
                <a class="avatar" href="微釘-好友主頁(詳細資料).html"><img src="img/uimg/u__chat-img07.jpg" /></a>\
            </li>'
        ].join("");
        $chatMsgList.append(_tpl);

        setTimeout(function () {wchat_ToBottom();}, 17);
    }

    /** 文件大小顯示  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];
    }
});

// ...開紅包功能
$(".J__getRedPackets").on("click", function(){
    var getHbIdx = wcPop({
        id: 'wdtPopGetHb',
        skin: 'ios',
        content: $("#J__popupTmpl-getRedPacket").html(),
        xclose: true,
        style: 'background-color: #f3f3f3; width: 280px;',

        show: function () {
            $("body").on("click", ".J__btnGetRedPacket", function () {
                var that = $(this);
                that.addClass("active");
                setTimeout(function(){
                    that.removeClass("active");
                }, 1000);
            });
        }
    });
});
/* …… 微釘主佈局——首頁.layout {{{ …… */
.weDingTalk__panel{-webkit-touch-callout:none; -webkit-user-select:none; -moz-user-select:none; user-select:none; -webkit-tap-highlight-color: transparent; transition: transform .3s;}
.we__dingtalk-wrapper{height: calc(100vh); position: relative;}
.wdt__container{overflow-y: auto; -webkit-overflow-scrolling: touch; width: 100%; position: relative;}

/* —— 頂部header */
.wdt__topBar .inner{/*background-image: linear-gradient(90deg,#3296fa 10%,#00d3f3);*/ background: #fff; height:1rem; width:100%; z-index:999; position:relative;}
.wdt__topBar.topfixed{padding-bottom:1rem;}
.wdt__topBar.topfixed .inner{max-width:750px; width:100%; position:fixed; top:0;}
.wdt__topBar .inner .barTit{color:#191f25; font-size:.36rem; font-family: 'Microsoft Yahei'; margin-top: -.03rem; padding-left: .25rem; position: relative;}
.wdt__topBar .inner .barTit.sm{color: #575b60; font-size: .32rem; padding-left: 0;}
.wdt__topBar .inner .barTxt{color: #191f25; font-size: .32rem; justify-content: center; align-items: center;}
.wdt__topBar .inner .barTxt .lbl{color: #9ea0a3; display: block; font-size: .2rem;}
.wdt__topBar .inner .linkico{text-align:center; height: 1rem; line-height: 1rem; width:1rem; position: relative;}
.wdt__topBar .inner .linkico .iconfont{color: #3296fa; font-size: .4rem; position: relative;}
.wdt__topBar .inner .linkico .wdt__badge{position: absolute; top: -.1rem; right: -.2rem;}
.wdt__topBar .inner .linkico .wdt__badge-dot{position: absolute; top: 0; right: -.1rem;}

/* 中間主頁面css */
/* 搜索 */
.wdt__searbox{background:linear-gradient(180deg, #efefef 0%, #f8f8f8 100%); padding: .2rem .25rem;}
.wdt__searbox .inner{background: #fff; border-radius: .05rem; padding-left: .2rem;}
.wdt__searbox .inner .iconfont{color: #7a7d81; font-size: .32rem;}
.wdt__searbox .ipt-sear{background: none; border: 0; font-size: .24rem; padding: 0 .1rem; height: .6rem; line-height: .6rem;}
/* —— 1、消息模塊 */
/* 消息記錄列表 */
.wdt__recordList ul li{background: #fff; font-family: 'Microsoft Yahei'; padding: .2rem .25rem; position: relative;}
.wdt__recordList ul li:after{content: ''; background-color: #dcdddd; color: #dcdddd; opacity: .56; height: 1px;width: 100%; position: absolute;left: 0;bottom: 0; transform: scaleY(.5); -webkit-transform: scaleY(.5);}
.wdt__recordList ul li:last-child:after{display: none;}
.wdt__recordList ul li .avator{margin-right: .25rem; border-radius: 50%; overflow: hidden; height: .9rem; width: .9rem; position: relative;}
.wdt__recordList ul li .avator img{border-radius: 50%; height: 100%; width: 100%; object-fit: cover; position: absolute;}
.wdt__recordList ul li .groups{background: #dcdddd;}
/* —— 2、事務模塊 */
/* 輪播圖 */
.wdt__affairs-bigImg{background-image: linear-gradient(180deg, #efefef 0%, #fff 100%); padding: .25rem; position: relative;}
.wdt__affairs-bigImg a{display:block;overflow:hidden; position:relative;}
.wdt__affairs-bigImg a img{border-radius: .05rem; height:2.5rem;width:100%; object-fit: cover;}
.wdt__affairs-bigImg a .info{margin-top: .25rem; text-align: center;}
.wdt__affairs-bigImg a .info h2{color:#333;font-size:.32rem;font-family:arial;}
/* 管理欄目 */
.wdt__similar .affair-tit{color: #191f25; font-size: .32rem; font-weight: 700; padding: .25rem;}
.wdt__similar .affair-cnt{margin-left: .25rem; padding: .25rem .3rem .25rem .2rem;}
.wdt__similar .affair-cnt.wdt__borT:before{opacity: .56;}
.wdt__similar .affair-cnt .ico{display: table; text-align: center; height: 1rem; width: 1rem;}
.wdt__similar .affair-cnt .ico .iconfont{color:#4da9ec; font-size: 1rem; display: table-cell; vertical-align: middle;}
.wdt__similar .affair-cnt .text{text-align: right;}
.wdt__similar .affair-cnt .text label{color: #191f25; display: block; font-size: .28rem;}
.wdt__similar .affair-cnt .btn-addPlan{background-color: #fff; color: #4da9ec; display: inline-block; margin-top: .1rem; line-height: .6rem; min-width: 2rem;}
.wdt__similar .affair-list ul li{float: left; margin-bottom: .35rem; padding: 0 .25rem; text-align: center; width: 25%;}
.wdt__similar .affair-list ul li a{color: #191f25; display: block; font-size: .28rem;}
.wdt__similar .affair-list ul li .bg{background-color: #3296fa; border-radius: .05rem; display: table; margin: 0 auto; margin-bottom: .1rem; height: .9rem; width: .9rem;}
.wdt__similar .affair-list ul li .iconfont{color: #fff; font-size: .5rem; display:table-cell; vertical-align: middle;}
/* —— 3、通訊錄模塊 */
.wdt__addrList-grid04 li{float: left; padding-bottom: .25rem; text-align: center; width: 25%;}
.wdt__addrList-grid04 li a{color: #575b60; display: block; font-size: .24rem;}
.wdt__addrList-grid04 li .bg{display: table; margin: 0 auto;}
.wdt__addrList-grid04 li .iconfont{color: #3296fa; font-size: .5rem; display:table-cell; vertical-align: middle;}
/* 新的好友 */
.wdt__addrNewFriend{padding: .2rem .25rem;}
.wdt__addrNewFriend .txt{color: #191f25; font-size: .28rem;}
.wdt__addrNewFriend .bg{border-radius: 50%; display: table; margin-right: .2rem; text-align: center; height: .7rem; width: .7rem;}
.wdt__addrNewFriend .bg .iconfont{color: #fff; font-size: .4rem; display:table-cell; vertical-align: middle;}
/* 常用聯繫人 */
.wdt__similar .addr-tit{color: #191f25; font-size: .32rem; font-weight: 700; padding: .25rem;}
.wdt__similar .addr-list ul li a{color: #191f25; font-size: .28rem; padding: 0 .25rem;}
.wdt__similar .addr-list ul li .avator{background-color: #3296fa; border-radius: 50%; display: block; margin-right: .2rem; height: .7rem; width: .7rem;}
.wdt__similar .addr-list ul li .avator img{border-radius: 50%; height: 100%; width: 100%; object-fit: cover;}
.wdt__similar .addr-list ul li em{display: block; padding: .3rem 0; position: relative;}
.wdt__similar .addr-list ul li em:after{content: ''; background-color: #dcdddd; color: #dcdddd; opacity: .56; height: 1px;width: 100%; position: absolute;left: 0;bottom: 0; transform: scaleY(.5); -webkit-transform: scaleY(.5);}
.wdt__similar .addr-list ul li:last-child em:after{display: none;}
/* —— 4、我的模塊 */
.wdt__profile{padding: .25rem;}
.wdt__profile .inner{background-color: #fff; border-radius: .05rem; box-shadow: 0 .05rem .15rem rgba(0,0,0,.1); padding: .15rem 0;}
.wdt__profile .hd{padding: 0 .25rem;}
.wdt__profile .hd .uname{color: #191f25; font-size: .36rem;}
.wdt__profile .hd .lbl{color: #9ea0a3; display: block; font-size: .2rem;}
.wdt__profile .hd .avator{border-radius: 50%; height: .9rem; width: .9rem; object-fit: cover;}
.wdt__profile .ct{color: #191f25; font-size: .28rem; margin-top: .5rem; padding: .25rem;}
/* 我的導航 */
.wdt__uNavMenu ul li a{color: #191f25; font-size: .28rem; padding: 0 .25rem;}
.wdt__uNavMenu ul li .bg{background-color: #3296fa; border-radius: .05rem; display: table; margin-right: .2rem; text-align: center; height: .5rem; width: .5rem;}
.wdt__uNavMenu ul li .bg .iconfont{color: #fff; font-size: .3rem; display:table-cell; vertical-align: middle;}
.wdt__uNavMenu ul li label{padding: .3rem 0; position: relative;}
.wdt__uNavMenu ul li label:after{content: ''; background-color: #dcdddd; color: #dcdddd; opacity: .56; height: 1px;width: 100%; position: absolute;left: 0;bottom: 0; transform: scaleY(.5); -webkit-transform: scaleY(.5);}
.wdt__uNavMenu ul li:last-child label:after{display: none;}

/* —— 底部tabBar */
.wdt__tabBar{padding-top: 1rem; position: relative;}
.wdt__tabBar .bottomfixed{background: #fff; max-width:750px; width: 100%; position: fixed; bottom: 0; z-index: 1001;}
.wdt__tabBar ul li{text-align:center; height: 1rem;}
.wdt__tabBar ul li .ico{display: inline-block; vertical-align: top; margin-top: .05rem; margin-bottom: .05rem; height: .48rem; width: .48rem; position: relative;}
.wdt__tabBar ul li .iconfont{color:#9ea0a3; font-size: .42rem;}
.wdt__tabBar ul li.on .iconfont{color:#3296fa;}
.wdt__tabBar ul li .txt{color: #7a7d81; display: block; font-size: .24rem;}
.wdt__tabBar ul li.on .txt{color: #3296fa;}
.wdt__tabBar ul li .ico .wdt__badge{position: absolute; top: 0; left: .4rem;}
.wdt__tabBar ul li .ico .wdt__badge-dot{left: .4rem;}
/* }}} */

 


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

-Advertisement-
Play Games
更多相關文章
  • 上一篇介紹的是 app.js 邏輯層文件中註冊程式,對應的每個分頁面都會有的 js 文件中 page() 函數註冊頁面 微信小程式 06 詳解介紹.js 邏輯層文件 註冊頁面 寶典官方文檔: https://developers.weixin.qq.com/miniprogram/dev/frame ...
  • 第一步:畫UI,代碼如下: ...
  • 將已經存在的工程導入到eclipse步驟: ①:首先複製當前工程所在的路徑。 ②:然後在eclipse,右鍵->Import->General->Existing Projects into Workspace->將複製的路徑黏貼進去->Browser->Copy projects into wor ...
  • 根據是否知道源代碼測試可以分為黑盒和白盒。 黑盒:功能測試。 白盒:知道源代碼,要寫測試代碼。 根據測試的粒度。 方法測試: 單元測試: 集成測試: 系統測試: 根據測試的暴力程度。 壓力測試:谷歌工程師給我們提供了一個monkey + 次數指令可以進行壓力測試。 冒煙測試: 在Android工程下 ...
  • 背景圖片 如果背景圖片小於當前的div的情況下預設的是將平鋪充滿元素background-image 設置背景圖片。background-repeat 設置是否及如何重覆背景圖片。 repeat 預設的是都重覆 repeat-x 背景圖像在水平方向重覆 repeat-y 背景圖片在垂直方向重覆 no ...
  • 資料庫自己定義,我用了四個框聯動,選擇了一個才會出現下一個,每一個都會去資料庫查詢一次。但是一開始第一次的方法是查詢一次,然後每次聯動都用的最開始一次的數據查詢,後來發現查詢一次不能讓聯動點來點去,只能一次順序過去,所以才每次都查詢。 第一次: 前端: js: 資料庫: 第二次: ...
  • 高度塌陷的問題: 當開啟元素的BFC以後,元素將會有如下的特性 1 父元素的垂直外邊距不會和子元素重疊 開啟BFC的元素不會被浮動元素所覆蓋 開啟BFC的元素可以包含浮動的子元素 如何開啟元素的BFC 設置元素浮動 設置元素絕對定位 設置元素為inline-block float:left; (不好 ...
  • 此系列文章將整合我的 React 視頻教程與 React Native 書籍中的精華部分,給大家介紹 React 與 React Native 結合學習的方法,此小節主要介紹 React 的底層原理與機制。 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...