jquery二級導航

来源:https://www.cnblogs.com/chenyingying0/archive/2020/02/25/12364170.html
-Advertisement-
Play Games

效果圖 直接放代碼 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>cat</title> <link rel="stylesheet" href="../css/base.css"> <link rel=" ...


效果圖

 

 直接放代碼

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>cat</title>
    <link rel="stylesheet" href="../css/base.css">
    <link rel="stylesheet" href="../css/cat.css">
</head>
<body>
    <div class="content">
        <div class="container">
            <div id="cat" class="cat">
                <a href="#" class="cat-title"><i class="cart-icon">#</i>商品分類</a>  
                <div class="cat-item dropdown" data-active="cat" data-load="../js/cat-1.json">
                    <div class="dropdown-toggle">
                        <a href="#" class="cat-item-link">家用電器</a>
                        <span class="dropdown-arrow cat-arrow">&gt;</span>
                    </div>
                    <div class="dropdown-list">
                        <div class="dropdown-loading"></div>
                    </div>
                </div>
                <div class="cat-item dropdown" data-active="cat" data-load="../js/cat-2.json">
                    <div class="dropdown-toggle">
                        <a href="#" class="cat-item-link">手機、運營商、數位</a>
                        <span class="dropdown-arrow cat-arrow">&gt;</span>
                    </div>
                    <div class="dropdown-list">
                        <div class="dropdown-loading"></div>
                    </div>
                </div>
                <div class="cat-item dropdown" data-active="cat" data-load="../js/cat-3.json">
                    <div class="dropdown-toggle">
                        <a href="#" class="cat-item-link">電腦、辦公</a>
                        <span class="dropdown-arrow cat-arrow">&gt;</span>
                    </div>
                    <div class="dropdown-list">
                        <div class="dropdown-loading"></div>
                    </div>
                </div>
                <div class="cat-item dropdown" data-active="cat" data-load="../js/cat-4.json">
                    <div class="dropdown-toggle">
                        <a href="#" class="cat-item-link">家居、傢具、家裝、廚具</a>
                        <span class="dropdown-arrow cat-arrow">&gt;</span>
                    </div>
                    <div class="dropdown-list">
                        <div class="dropdown-loading"></div>
                    </div>
                </div>
            </div>
        </div>
    </div>    
    <script src="../js/jquery.js"></script>
    <script src="../js/transition.js"></script>
    <script src="../js/showhide.js"></script>
    <script src="../js/dropdown.js"></script>
    <script src="../js/cat.js"></script>
</body>
</html>

base.css  https://www.cnblogs.com/chenyingying0/p/12363689.html
cat.css

/*公共樣式 */
    .container{
        width:1200px;
        margin:0 auto;
    }
    .link{
        color:#4d555d;
    }
    a.link:hover{
        color:#f01414;
    }
    .fl{
        float:left;
    }
    .fr{
        float:right;
    }
    /*提取出過渡樣式,可公用*/
    .transition{
        -webkit-transition:all .5s;
        -moz-transition:all .5s;
        -ms-transition:all .5s;
        -o-transition:all .5s;
        transition:all .5s;
    }
    /*文字隱藏*/
    .text-hidden{
        text-indent:-9999px;
        overflow:hidden;
    }
    /*文字溢出省略顯示*/
    .text-ellipsis{
        overflow: hidden;
        white-space: nowrap;
        text-overflow:ellipsis;
    }

/*dropdown下拉組件*/
    .dropdown{
        position: relative;
    }
    .dropdown-toggle{
        position: relative;
        z-index:4;
    }
    .dropdown-arrow{
        display: inline-block;
        vertical-align: middle;
        background-repeat: no-repeat;
        line-height:1;/*否則圖標字體會繼承父元素的line-height屬性,占據過多空間*/
    }
    .dropdown-list{
        display: none;
        position: absolute;
        z-index:3;
    }
    .dropdown-left{
        left:0;
        right:auto;
    }
    .dropdown-right{
        right:0;
        left:auto;
    }
    .dropdown-loading{
        width:32px;
        height:32px;
        background:url(../img/loading.gif) no-repeat;
        margin:20px;
    }

/*showhide*/
    .fadeOut{
        opacity: 0;
        visibility: hidden;
    }
    .slideUpDownCollapse{
        height:0 !important;/*避免因為優先順序不夠而無法生效*/
        padding-top:0 !important;
        padding-bottom:0 !important;
    }
    .slideLeftRightCollapse{
        width:0 !important;/*避免因為優先順序不夠而無法生效*/
        padding-left:0 !important;
        padding-right:0 !important;
    }

/*側導航*/
    .cat{
        width:209px;
        height:566px;
        background-color:#f01414;
        position: absolute;
        top: -54px;
        z-index: 5;
    }
    .cat-title{
        display: inline-block;
        width:165px;
        height:54px;
        line-height:54px;
        color:#fff;
        font-size:14px;
        padding:0 22px;
        background-color:#c81414;
    }
    .cart-icon{
        color:#fff;
        font-style:normal;
        font-size:18px;
        margin-right:8px;
    }
    .cat-item{
        height:37px;
        line-height: 37px;
        padding-left:18px;
        color:#fff;
        border-left:1px solid #f01414;
        border-right:1px solid #f01414;
        position: static;/*覆蓋掉之前的relative定位,使右邊list相對於整個大容器進行頂部對齊*/
    }
    .cat-arrow{
        position: absolute;
        right: 20px;
        top: 9px;
    }
    .cat-item-link{
        color:#fff;
    }
    .cat .dropdown-loading{
        margin:220px auto 0;
    }
    .cat .dropdown-list{
        position: absolute;
        left:209px;
        top:54px;
        background:#fff;
        width:500px;
        box-shadow:0 0 5px rgba(0,0,0,.2);
        padding:20px;
        height:472px;
        overflow:hidden;
    }
    .dropdown-list-item{
        width:500px !important;
        display: block;
        margin:24px 0;
        line-height:20px;
    }
    .dropdown-list-item-title{
        display: block;
        float:left;
        width:84px;
        padding-right:16px;
        border-right:1px solid #333;
        text-align:right;
        font-weight:bold;
    }
    .dropdown-list-item-txt{
        display: inline-block;
        padding-left:15px;
        width:380px;
    }
    .dropdown-list-item-txt a{
        margin-right:16px;
        display: inline-block;/*否則內聯元素換行時文字會被拆開*/
    }
    /*激活樣式*/
    .cat-active.cat-item{
        background-color:#fff;
        color:#f01414;
    }
    .cat-active .cat-item-link{
        color:#f01414;
    }
    .cat-active .dropdown-list{
        display:block;
    }

 

jquery.js
transition.js  https://www.cnblogs.com/chenyingying0/p/12363649.html
showhide.js  https://www.cnblogs.com/chenyingying0/p/12363707.html
dropdown.js  https://www.cnblogs.com/chenyingying0/p/12363739.html
cat.js

// 不要暴露在全局,使用匿名函數自執行
(function($){

    "use strict";

//cat
    $("#cat").find(".dropdown").on("dropdown-show",function(e){
        loadOnce($(this),buildCatItem);
    }).dropdown({
        css3:true,
        js:true,
        animation:"slideLeftRight"
    });
    //創建cat的item結構
    function buildCatItem($elem,data){
        var list=$elem.find(".dropdown-list");
        var html="";

        if(data.length===0) return;
        html=``;

        for(var i=0;i<data.length;i++){
            html+=`<dl class="dropdown-list-item">
                        <dt class="dropdown-list-item-title">
                            <a href="#">`+data[i].title+`</a>
                        </dt>
                        <dd class="dropdown-list-item-txt">`;
            for(var j=0;j<data[i].items.length;j++){
                html+=`<a href="#">`+data[i].items[j]+`</a>`;
            }
            html+=`</dd></dl>`;
            
        }
        
        list.html(html);    
    }

//載入一次數據
function loadOnce($elem,success){
    var dataLoad=$elem.data("load");

    if(!dataLoad) return;

    if(!$elem.data("loaded")){
        $elem.data("loaded",true);

        $.getJSON(dataLoad).done(function(data){
            success($elem,data);
        }).fail(function(){
            $elem.data("loaded",false);
        });    
    }    
}



})(jQuery);

 


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

-Advertisement-
Play Games
更多相關文章
  • https://blog.csdn.net/sumaliqinghua/article/details/86246762 【通俗易懂】關係模式範式分解教程 3NF與BCNF口訣!小白也能看懂原創置頂 沃茲基.碩德 最後發佈於2019-01-10 18:26:14 閱讀數 13082 收藏展開本來是為 ...
  • https://blog.csdn.net/wyh7280/article/details/83350722 範式通俗理解:1NF、2NF、3NF和BNCF原創hongiii 最後發佈於2018-10-24 21:03:43 閱讀數 14993 收藏展開範式通俗理解:1NF、2NF、3NF和BNCF ...
  • SQL腳本 /*************1:刪除臨時表*************/ if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#tempTable')) drop table #tempTable; ...
  • 有時候我們需要跨庫join查詢,但是配置多數據源成本又太高,Oracle提供了DBLink功能,MySQL中也有類似的實現:federated engine。 1. MySQL中使用federated引擎的表能夠映射遠程資料庫的表,本地的這張表相當於遠程資料庫某表在本地的引用,在本地對錶的操作能夠實 ...
  • 註意:無特殊說明,Flutter版本及Dart版本如下: Flutter版本: 1.12.13+hotfix.5 Dart版本: 2.7.0 展示非同步任務狀態 當有一個Future(非同步)任務需要展示給用戶時,可以使用FutureBuilder控制項來完成,比如向伺服器發送數據成功時顯示成功提示: 效 ...
  • Android.bp是用來替換Android.mk的配置文件,它使用Blueprint框架來解析。Blueprint是生成、解析Android.bp的工具,是Soong的一部分。Soong則是專為Android編譯而設計的工具,Blueprint只是解析文件的形式,而Soong則解釋內容的含義,最終 ...
  • Api分類 internal api 翻譯為內部API,理解為供sdk內部使用的API。 這類介面最初打算就是不對外公開的,有點private的意思。 hide api 在源碼中看到使用@hide 標記的方法或類,就是hide的。 這類介面本意是要公開,但是當前階段仍然不穩定或未開發完成。所以暫時不 ...
  • @[TOC] 面向過程編程P OP(Process oriented programming) 面向過程就是分析出解決問題的步驟,然後用函數把這些步驟一步一步實現,使用的時候再一個一個的依次調用就可以了。 優點:性能比面向對象高,適合跟硬體聯繫很緊密的東西,例如單片機就採用的面向過程編程 缺點:沒有 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...