jquery自適應佈局

来源:http://www.cnblogs.com/ZQ01/archive/2016/05/27/5535362.html
-Advertisement-
Play Games

代碼整理 - uix.layout.js /** * Grace [jQuery.js] * * UIX頁面佈局 * [email protected] * exp: * $.uix.layout();//執行佈局 * class="uix-layout-container";//標識佈局容器 * c ...


代碼整理 - uix.layout.js

/**
* Grace [jQuery.js]
*
*  UIX頁面佈局
*  [email protected]

*  exp: 
*  $.uix.layout();//執行佈局
*  class="uix-layout-container";//標識佈局容器
*  class="uix_box";//用於調整 佈局時將此元素高度鋪滿父容器(支持設置padding\margin\border)
*  例:

html1:div中
<div class="uix-layout-container">
    <div class="uix-layout-north"></div>
    <div class="uix-layout-north"></div>
    <div class="uix-layout-west"></div>
    <div class="uix-layout-east"></div>
    <div class="uix-layout-center"></div>
    <div class="uix-layout-south"></div>
</div>
html2:body中
<body class="uix-layout-container">
    <div class="uix-layout-north"></div>
    <div class="uix-layout-north"></div>
    <div class="uix-layout-west"></div>
    <div class="uix-layout-east"></div>
    <div class="uix-layout-center"></div>
    <div class="uix-layout-south"></div>
</body>
html3:嵌套
<body class="uix-layout-container">
    <div class="uix-layout-north"></div>
    <div class="uix-layout-north"></div>
    <div class="uix-layout-west"></div>
    <div class="uix-layout-east"></div>
    <div class="uix-layout-center uix-layout-container">
        <div class="uix-layout-north"></div>
        <div class="uix-layout-center"></div>
    </div>
    <div class="uix-layout-south"></div>
</body>

js:
頁面結構動態修改後調用 $.uix.layout()即可,若無動態修改則無需做操作

*
*/
(function (undefined) {
    //配置
    var config = {
        useUixLayout: true, //啟用
        isDebugger: true, //是否開啟日誌輸出
        version: "V201508171400", //版本
        filename: "uix.layout.js", //腳本名稱
        timeout: 500 //佈局間隔
    };

    //日誌輸出
    var log = function () { }
    if (typeof console != "undefined" && console.log) {
        log = function (context, checklog) {
            if (typeof checklog != "undefined" || config.isDebugger)
                console.log("%c" + "[uix.layout]", "color:green;", context);
        }
    }

    //載入日誌
    log("載入中", true);
    if (!config.useUixLayout) { log("已停止載入[uix.layout 未啟用]", true); return; }
    if (typeof $ == "undefined") { log("已停止載入[需要jQuery支持]", true); return; }
    if (typeof $.uix != "undefined") { log("已停止載入[已載入過]", true); return; }
    log("日誌狀態[" + (config.isDebugger ? "啟用" : "禁用") + "]", true);


    var tool = {
        selecter: ".uix_box", //uix_box高寬自適應
        setAutoBox: function (inputSelecter) {
            var sel = inputSelecter || tool.selecter;
            $(sel).each(function () {
                var o = $(this);
                var p = o.parent();
                var s = tool.getEleSize(o);
                o.height(p.height() - s.otherHeight - tool.getCV(o, ["marginTop", "marginBottom"]));
                o.width(p.width() - s.otherWidth - tool.getCV(o, ["marginLeft", "marginRight"]));
            })
        },
        getCV: function (ele, cn) {
            var s = 0;
            if (typeof cn == "string") cn = [cn];
            $(cn).each(function (i, o) {
                var v;
                s += isNaN(v = parseInt(ele.css(o))) ? 0 : v;
            });
            return s;
        },
        getOtherHeight: function ($obj) { return $obj.outerHeight() - $obj.height() },
        getOtherWidth: function ($obj) { return $obj.outerWidth() - $obj.width() },
        getEleSize: function ($objs) {
            var rev = { height: 0, width: 0, otherHeight: 0, otherWidth: 0, outerHeight: 0, outerWidth: 0, children: [] };
            for (var i = 0; i < $objs.length; i++) {
                var o = $($objs[i]);
                var h = o.height(), w = o.width(), oh = o.outerHeight(), ow = o.outerWidth();
                var c = { height: h, width: w, otherHeight: oh - h, otherWidth: ow - w, outerHeight: oh, outerWidth: ow, ele: o }
                rev.height += c.height;
                rev.width += c.width;
                rev.otherHeight += c.otherHeight;
                rev.otherWidth += c.otherWidth;
                rev.outerHeight += c.outerHeight;
                rev.outerWidth += c.outerWidth;
                rev.children.push(c);
            }
            return rev;
        },
        log: log
    }

    var uixlayout = {
        tool: tool,
        layout: function (cssname) {
            var timeout = function () {
                tool.log("開始佈局[" + window.__uixlayoutstate + "]");
                var pares = $(".uix-layout-container");
                pares.each(function (obj, i) {
                    $.uix.initLayout($(this));
                });
                $.uix.setGrid($(".uix_grid")); //自適應表格
                tool.log("佈局完畢[" + window.__uixlayoutstate + "]");
                window.__uixlayoutstate = false;
            }

            //如果已經有了一個待執行的操作,則取消之
            if (typeof window.__uixlayoutstate == "number") {
                tool.log("取消佈局[" + window.__uixlayoutstate + "]");
                window.clearTimeout(window.__uixlayoutstate);
            }

            //添加一個新操作在待執行序列中
            window.__uixlayoutstate = setTimeout(timeout, config.timeout);
            tool.log("等待佈局[" + window.__uixlayoutstate + "] 等待" + config.timeout + "ms");
            return;
        },
        initLayout: function (pare) {
            var parent;
            if (pare[0].tagName.toUpperCase() == "BODY") {
                parent = { height: $(window).height(), width: $(window).width() };
                var marginHeight = tool.getCV($(pare), ["marginTop", "marginBottom"]);
                parent.height -= marginHeight;
            }
            else {
                parent = { height: $(pare[0]).height(), width: $(pare[0]).width() };
                var marginHeight = tool.getCV($(pare), ["marginTop", "marginBottom"]);
                parent.height -= marginHeight;
            }

            parent.element = pare;

            if (pare[0].tagName.toUpperCase() == "BODY") {
                pare.height(parent.height);
            }


            var eles = {
                north: pare.children(".uix-layout-north:visible"),
                south: pare.children(".uix-layout-south:visible"),
                east: pare.children(".uix-layout-east:visible"),
                west: pare.children(".uix-layout-west:visible"),
                center: pare.children(".uix-layout-center:visible")
            }
            var s = {
                parent: parent,
                norths: tool.getEleSize(eles.north),
                souths: tool.getEleSize(eles.south),
                centers: tool.getEleSize(eles.center),
                easts: tool.getEleSize(eles.east),
                wests: tool.getEleSize(eles.west)
            }
            //debugger;
            s.centers.outerHeight = s.parent.height - s.norths.outerHeight - s.souths.outerHeight;
            s.centers.height = s.centers.outerHeight - s.centers.otherHeight;
            s.centers.outerWidth = s.parent.width - s.wests.outerWidth - s.easts.outerWidth;
            s.centers.width = s.centers.outerWidth - s.centers.otherWidth;

            tool.log(s);

            var autoHeight = parent.height - s.norths.outerHeight - s.souths.outerHeight;
            var autoWidth = parent.width - s.wests.outerWidth - s.easts.outerWidth;

            var cheight = s.centers.height;
            var cwidth = s.centers.width;
            eles.north.css({ margin: "0px" });
            eles.south.css({ margin: "0px" });

            var left = 0; //, parentBordr.left
            var top = s.norths.outerHeight; //parentBordr.top; + ;


            //考慮加入前置函數
            //在改變佈局前先改變子元素


            for (var i = 0; i < s.wests.children.length; i++) {
                var item = s.wests.children[i];
                var westheight = autoHeight - item.otherHeight;
                item.ele.css({ position: "absolute", left: left + "px", right: "auto", top: top + "px", bottom: "auto", height: westheight + "px", display: "block", margin: "0px" });
                left += item.outerWidth;
            }

            var right = 0; // parentBordr.right;
            for (var i = 0; i < s.easts.children.length; i++) {
                var item = s.easts.children[i];
                var eastheight = autoHeight - item.otherHeight;
                item.ele.css({ position: "absolute", right: right + "px", left: "auto", top: top + "px", bottom: "auto", height: eastheight + "px", display: "block", margin: "0px" });
                right += item.outerWidth;
            }

            eles.center.css({ height: cheight, "marginLeft": s.wests.outerWidth, "marginRight": s.easts.outerWidth });
            tool.log("整體佈局完成");

            tool.log("開始檢測回調函數  提示:可設置window.uixAfterResize值[false:禁用回調|function:自定義回調|undefined(預設):自動檢測]");
            this.resizecontral(s);
            tool.log("回調函數處理完畢");

            $.uix.tool.setAutoBox(); //uix_box 高寬自適應
        },

        resizecontral: function (sizes) {
            //調整佈局內常用版式
            //檢查用戶設置的 uixAfterResize 變數,
            // boolean fale:不進行排盤,
            // function 調用自定義函數,
            // undefined 自動檢測所屬版式
            if (typeof window.uixAfterResize == "boolean" && window.uixAfterResize == false) {
                tool.log("禁用自動解析回調[window.uixAfterResize==false]");
                return;
            }

            if (typeof window.uixAfterResize == "function") {
                tool.log("調用自定義回調函數[window.uixAfterResize=function]");
                window.uixAfterResize(sizes);
                return;
            }
            if (typeof window.uixAfterResize == "undefined") {
                tool.log("使用自動解析回調[window.uixAfterResize=undefined]");
                var n = sizes.norths.children.length;
                var w = sizes.wests.children.length;
                var e = sizes.easts.children.length;
                var c = sizes.centers.children.length;
                var s = sizes.souths.children.length;
                tool.log("解析頁面結構"
                + " north[" + n + "] "
                + " west[" + w + "] "
                + " east[" + e + "] "
                + " south[" + s + "] "
                + " center[" + c + "]");

                //判斷界面結構,選擇合適的回調方法,
                if (w == 0 && e == 0 && c == 1) {
                    $.uix.afterResize1(sizes);
                }
                if (w == 1 && e == 0 && c == 1) {
                    $.uix.afterResize2(sizes);
                }
                return;
            }
        },

        initpage: function () {
            log("等待頁面載入完成後初始化", true);
            $(window.document.body).ready(function () {
                if ($(".uix-layout-container").length == 0) { log("已停止載入[未發現.uix-layout-container]", true); return; }
                $.uix.tool.log("觸發佈局[window onload]");
                $.uix.layout();
                $(window).bind("resize", function () {
                    $.uix.tool.log("觸發佈局[window onresize]");
                    $.uix.layout();
                });
                $(".uix-layout-north,.uix-layout-south,.uix-layout-east,.uix-layout-west").bind("resize", function () {
                    $.uix.tool.log("觸發佈局[uix-layout-" + $(this).attr("class") + " onresize]");
                    $.uix.layout();
                });
                log("初始化完畢", true);
            });
        },

        afterResize1: function (size) {
            //特定結構回調1
        },
        afterResize2: function (size) {
            //特定結構回調2
        }
    };
    $.extend({ uix: uixlayout });
    log("載入完畢", true);
    $.uix.initpage();
})();
View Code

demo


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

-Advertisement-
Play Games
更多相關文章
  • https://daveceddia.com/access-control-allow-origin-cors-errors-in-angular/ Getting this error in your Angular app? No ‘Access-Control-Allow-Origin’ he ...
  • 由於系統預設alert彈出視窗不能自定義樣式,有可能不符合網站的風格,雖然網上應該有很多這樣的JS 但是還是自己寫的比較放心,順便練習一下對DOM的操作 支持IE6下的SELECT不能遮罩的問題,谷歌支持圓角,IE6下就比較醜了,四四方方的,不過可以自定義自己喜歡的樣式 聽取建議後,修改了posit ...
  • 按步驟安裝--選擇指定瀏覽器-安裝成功後顯示綠色圖標; 打開瀏覽器;將文件夾移入wampserver安裝路徑的www文件夾中;找到電腦IP 在手機端訪問 IP/文件夾/demo.html即可 ...
  • 上節我們討論了對象的定義和對象的創建,知道了函數也是對象,知道了對象都是由函數創建的,知道了對象的原型和函數的原型屬性的關係。這節說一下關於對象屬性的操作,下節就可以切入正題了。 屬性刪除 delete操作符刪除一個屬性值後會返回true,第5行也返回true是因為person.age已經是個und ...
  • 1.XPath 查看元素的xpath https://addons.mozilla.org/zh-CN/firefox/addon/xpath-checker/ 2. Tamper Data 查看頁面每一個請求的具體響應時間,結果 https://addons.mozilla.org/zh-CN/f ...
  • (1) 先說jquery, 使用 jQuery 庫的話,只需要同時綁定 oninput 和 onpropertychange 兩個事件就可以了,示例代碼: $('#username').bind('input propertychange', function() { $('#content').h ...
  • 在開發的時候,遇到了這樣一個問題,客戶填寫自己的收貨地址,可以新建,但同時也可以選擇之前填寫的,由於我們的客戶本身就是商戶,地址繁多,把它之前的地址簡單用個下拉框羅列出來顯然不合適,並且客戶要求能夠對地址通過姓名篩選,這樣,選擇地址就必須再開一個小窗來完成了,那麼,小窗中填寫的值怎麼回傳呢? js有 ...
  • 淺談對象(本筆記中截圖和部分代碼取自慕課網視頻http://www.imooc.com/learn/277第四章對象) 面向對象原型鏈繼承這塊,應該算是javascript中最難理解的部分了,小弟腦子比較難轉彎,也是看了好久視頻,博文,慢慢的才有了自己的理解,現在記錄一下學習的內容和總結。首先第一節 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...