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的書寫形式:
ul.breadcrumb li:last-child a {
padding: 0;
}
2.2 CSS3圓角
主要功能是爲標籤添加圓角樣式,有以下的屬性:
border-radius : none | percent | px;
none表明的是不設置圓角,percent表示可使用百分數實現圓角的設置,px表示可使用像素值實現圓角的設置。以下:
border-radius: 50%;
2.3 CSS3過渡
CSS3的transition容許CSS的屬性值在必定的時間區間內平滑地過渡。這種效果能夠在鼠標懸停、鼠標單擊、被點擊或對元素任何改變中觸發,並圓滑地以動畫效果改變CSS的屬性值。
藉助CSS3的transition可讓元素的樣式變化體現的更爲平滑,其主要使用方式以下:
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過渡的相應操做,具體代碼以下:
/*實現每一個導航項的基本樣式*/
ul.breadcrumb li {
float: right;
padding: 5px;
margin: 3px 0 0 -50px;
background-color: #59a386;
border-radius: 50px;
transition: all 0.2s linear 0s;
}
ul.breadcrumb li a {
display: block;
overflow: hidden;
min-width: 50px;
width: 50px;
height: 50px;
padding: 0 33.33px 0 52px;
color: #509378;
background-color: #65ba99;
text-align: center;
line-height: 50px;
border-radius: 50px;
transition: all 0.2s linear 0s;
box-sizing: border-box;
}
4.2 實現hover狀態下的變化
藉助標籤的hover狀態,在鼠標懸停到該導航項上時,導航項的大小變大,span標籤的文字須要出現,具體代碼以下:
/*控制每一個導航項中文本的出現*/
ul.breadcrumb li a .text {
display: none;
opacity: 0;
}
ul.breadcrumb li a:hover {
width: 150px;
background-color: #77c2a5;
}
ul.breadcrumb li a:hover .text {
display: inline-block;
opacity: 1;
}
4.3 成品代碼
<html>
<head>
<meta charset="utf-8">
<title>CSS3圓形風格麪包屑導航</title>
<link rel="stylesheet" type="text/css" href="http://css.h5course.cn/reset.css" />
<style type="text/css">
html, body {
height: 100%;
padding: 0 100px;
background-color: #59a386;
}
.title {
padding: 50px 0;
color: #77c2a5;
font-size: 25px;
font-weight: bold;
}
ul.breadcrumb {
display: inline-block;
margin-left: 50px;
}
/*實現每一個導航項的基本樣式*/
ul.breadcrumb li {
float: right;
padding: 5px;
margin: 3px 0 0 -50px;
background-color: #59a386;
border-radius: 50px;
transition: all 0.2s linear 0s;
}
ul.breadcrumb li a {
display: block;
overflow: hidden;
min-width: 50px;
width: 50px;
height: 50px;
padding: 0 33.33px 0 52px;
color: #509378;
background-color: #65ba99;
text-align: center;
line-height: 50px;
border-radius: 50px;
transition: all 0.2s linear 0s;
box-sizing: border-box;
}
/*控制每一個導航項中文本的出現*/
ul.breadcrumb li a .text {
display: none;
opacity: 0;
}
ul.breadcrumb li a:hover {
width: 150px;
background-color: #77c2a5;
}
ul.breadcrumb li a:hover .text {
display: inline-block;
opacity: 1;
}
/*處理第一個導航項*/
ul.breadcrumb li:last-child a {
padding: 0;
}
ul.breadcrumb li:last-child:hover {
padding: 3px;
margin-top: 0;
}
ul.breadcrumb li:last-child:hover a {
width: 60px;
height: 60px;
line-height: 60px;
}
</style>
</head>
<body>
<h1 class="title">CSS3圓形風格麪包屑導航</h1>
<ul class="breadcrumb">
<li>
<a href="#">
<span class="text icon-file">移動端</span>
</a>
</li>
<li>
<a href="#">
<span class="text icon-folder-open">JS</span>
</a>
</li>
<li>
<a href="#">
<span class="text icon-code">CSS3</span>
</a>
</li>
<li>
<a href="#">
<span class="text icon-beaker">HTML5</span>
</a>
</li>
<li>
<a href="#">
<span class="icon icon-home">HOME</span>
</a>
</li>
</ul>
</body>
</html>
總結
使用純CSS3製做的麪包屑導航即如上述代碼,你們若是還有其餘比較漂亮、酷炫的製做方式也歡迎跟小編分享。
相關文章推薦:
↓↓↓
本文分享自微信公衆號 - HTML5 WEB前端分享(h5course-com)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。