前端特效製做 | CSS3圓形風格麪包屑導航

HTML5學堂(碼匠):前端開發中,導航欄是一個不可或缺的模塊。效果酷炫、製做簡單必然是開發者的首選,使用CSS3製做的麪包屑導航將是廣大開發者的一個絕佳選擇。css

本文主要內容html

1. 效果展現前端

2. 涉及到的CSS3相關知識web

3. 功能的實現思路微信

4. 具體的實現代碼與解析佈局

1. 效果展現動畫

CSS3技術的出現爲頁面的效果層開發提供了大量的幫助,以其強大的功能與簡單的語法深受開發者的追捧。以下這個CSS3圓形風格的麪包屑導航,在製做上就爲開發者提供了除JS實現以外的思路。spa

2. 涉及到的CSS3相關知識.net

2.1 CSS3選擇器3d

主要功能是用於選擇標籤,有以下幾個經常使用的選擇器。

選擇器E:last-child(n):匹配其父元素下的最後一個子元素。

選擇器E:first-child:匹配其父元素下的第一個子元素。

以下是選擇器E:last-child的書寫形式:

  1. ul.breadcrumb li:last-child a {

  2.     padding: 0;

  3. }

2.2 CSS3圓角

主要功能是爲標籤添加圓角樣式,有以下的屬性:

border-radius : none | percent | px;

none表明的是不設置圓角,percent表示可使用百分數實現圓角的設置,px表示可使用像素值實現圓角的設置。以下:

  1. border-radius: 50%;

2.3 CSS3過渡

CSS3的transition容許CSS的屬性值在必定的時間區間內平滑地過渡。這種效果能夠在鼠標懸停、鼠標單擊、被點擊或對元素任何改變中觸發,並圓滑地以動畫效果改變CSS的屬性值。

藉助CSS3的transition可讓元素的樣式變化體現的更爲平滑,其主要使用方式以下:

  1. transition: all 0.2s linear 0s;

上述代碼中,屬性的從左往右依次表明的是:執行變換的屬性(all表示全部變化的樣式)、變換延續的時間、在延續時間段變換的速率變化、變換的延遲時間。

3. 功能的實現思路

3.1 結構與樣式分析

當前效果主要是實現一個導航欄的製做,因此在結構上選用ul~li~a這樣的標籤組合,而後在a標籤中放置span以放置導航的文本信息。針對樣式來講,須要配合上標籤的hover狀態,而後以相應的盒模型屬性配合上CSS3的相關語法實現最終的界面效果。

3.2 基本功能邏輯

首先使用margin負值與box-sizing屬性實現樣式佈局;

而後藉助CSS3的圓角與過渡實現樣式的處理;

最後對相應的標籤書寫鼠標懸停的hover狀態,實現樣式的平滑過渡變化。

4. 具體的實現代碼與解析

4.1 實現初始樣式的製做

針對圓形導航的展現,不對li標籤設置寬高,同時使用CSS3圓角處理每一個子導航選項,書寫上CSS3過渡的相應操做,具體代碼以下:

  1. /*實現每一個導航項的基本樣式*/

  2. ul.breadcrumb li {

  3.     float: right;

  4.     padding: 5px;

  5.     margin: 3px 0 0 -50px;

  6.     background-color: #59a386;

  7.     border-radius: 50px;

  8.     transition: all 0.2s linear 0s;

  9. }

  10. ul.breadcrumb li a {

  11.     display: block;

  12.     overflow: hidden;

  13.     min-width: 50px;

  14.     width: 50px;

  15.     height: 50px;

  16.     padding: 0 33.33px 0 52px;

  17.     color: #509378;

  18.     background-color: #65ba99;

  19.     text-align: center;

  20.     line-height: 50px;

  21.     border-radius: 50px;

  22.     transition: all 0.2s linear 0s;

  23.     box-sizing: border-box;

  24. }

4.2 實現hover狀態下的變化

藉助標籤的hover狀態,在鼠標懸停到該導航項上時,導航項的大小變大,span標籤的文字須要出現,具體代碼以下:

  1. /*控制每一個導航項中文本的出現*/

  2. ul.breadcrumb li a .text {

  3.     display: none;

  4.     opacity: 0;

  5. }

  6. ul.breadcrumb li a:hover {

  7.     width: 150px;

  8.     background-color: #77c2a5;

  9. }

  10. ul.breadcrumb li a:hover .text {

  11.     display: inline-block;

  12.     opacity: 1;

  13. }

4.3 成品代碼

  1. <html>

  2. <head>

  3.     <meta charset="utf-8">

  4.     <title>CSS3圓形風格麪包屑導航</title>

  5.     <link rel="stylesheet" type="text/css" href="http://css.h5course.cn/reset.css" />

  6.     <style type="text/css">

  7.         html, body {

  8.             height: 100%;

  9.             padding: 0 100px;

  10.             background-color: #59a386;

  11.         }

  12.         .title {

  13.             padding: 50px 0;

  14.             color: #77c2a5;

  15.             font-size: 25px;

  16.             font-weight: bold;

  17.         }

  18.         ul.breadcrumb {

  19.             display: inline-block;

  20.             margin-left: 50px;

  21.         }

  22.         /*實現每一個導航項的基本樣式*/

  23.         ul.breadcrumb li {

  24.             float: right;

  25.             padding: 5px;

  26.             margin: 3px 0 0 -50px;

  27.             background-color: #59a386;

  28.             border-radius: 50px;

  29.             transition: all 0.2s linear 0s;

  30.         }

  31.         ul.breadcrumb li a {

  32.             display: block;

  33.             overflow: hidden;

  34.             min-width: 50px;

  35.             width: 50px;

  36.             height: 50px;

  37.             padding: 0 33.33px 0 52px;

  38.             color: #509378;

  39.             background-color: #65ba99;

  40.             text-align: center;

  41.             line-height: 50px;

  42.             border-radius: 50px;

  43.             transition: all 0.2s linear 0s;

  44.             box-sizing: border-box;

  45.         }

  46.         /*控制每一個導航項中文本的出現*/

  47.         ul.breadcrumb li a .text {

  48.             display: none;

  49.             opacity: 0;

  50.         }

  51.         ul.breadcrumb li a:hover {

  52.             width: 150px;

  53.             background-color: #77c2a5;

  54.         }

  55.         ul.breadcrumb li a:hover .text {

  56.             display: inline-block;

  57.             opacity: 1;

  58.         }

  59.         /*處理第一個導航項*/

  60.         ul.breadcrumb li:last-child a {

  61.             padding: 0;

  62.         }

  63.         ul.breadcrumb li:last-child:hover {

  64.             padding: 3px;

  65.             margin-top: 0;

  66.         }

  67.         ul.breadcrumb li:last-child:hover a {

  68.             width: 60px;

  69.             height: 60px;

  70.             line-height: 60px;

  71.         }

  72.     </style>

  73. </head>

  74. <body>

  75.     <h1 class="title">CSS3圓形風格麪包屑導航</h1>

  76.     <ul class="breadcrumb">

  77.         <li>

  78.             <a href="#">

  79.                 <span class="text icon-file">移動端</span>

  80.             </a>

  81.         </li>

  82.         <li>

  83.             <a href="#">

  84.                 <span class="text icon-folder-open">JS</span>

  85.             </a>

  86.         </li>

  87.         <li>

  88.             <a href="#">

  89.                 <span class="text icon-code">CSS3</span>

  90.             </a>

  91.         </li>

  92.         <li>

  93.             <a href="#">

  94.                 <span class="text icon-beaker">HTML5</span>

  95.             </a>

  96.         </li>

  97.         <li>

  98.             <a href="#">

  99.                 <span class="icon icon-home">HOME</span>

  100.             </a>

  101.         </li>

  102.     </ul>

  103. </body>

  104. </html>

總結

使用純CSS3製做的麪包屑導航即如上述代碼,你們若是還有其餘比較漂亮、酷炫的製做方式也歡迎跟小編分享。


相關文章推薦:

點擊下方「閱讀原文」查看效果案例

↓↓↓ 

本文分享自微信公衆號 - HTML5 WEB前端分享(h5course-com)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。

相關文章
相關標籤/搜索