前端特效製作 | CSS3圓形風格麵包屑導航
本文主要內容
1. 效果展示
2. 涉及到的CSS3相關知識
3. 功能的實現思路
4. 具體的實現程式碼與解析
1. 效果展示
CSS3技術的出現為頁面的效果層開發提供了大量的幫助,以其強大的功能與簡單的語法深受開發者的追捧。如下這個CSS3圓形風格的麵包屑導航,在製作上就為開發者提供了除JS實現之外的思路。
2. 涉及到的CSS3相關知識
2.1 CSS3選擇器
主要功能是用於選擇標籤,有如下幾個常用的選擇器。
選擇器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製作的麵包屑導航即如上述程式碼,大家如果還有其他比較漂亮、酷炫的製作方式也歡迎跟小編分享。