说明:本方法使用CSS3,无图片,兼容各种webkit系浏览器,同时兼容IE8+。先上图:
1.首先是HTML代码,比较简单,只需要一个简单的ul和li即可
[html]
[/html]
2.接下来是CSS代码,首先是设定常规的li浮动和a标签美化:
[css]
#crumbs ul li {
float: left;
list-style: none;
}
#crumbs ul li a {
display: block;
float: left;
height: 34px;
background: #f66fa2;
text-align: center;
padding: 10px 20px 0 45px;
position: relative;
margin: 0 10px 0 0;
font-size: 20px;
text-decoration: none;
color: #fff;
}
[/css]
接下来就是面包屑导航的关键地方,通过before和after来创建箭头效果:
[css]
#crumbs ul li a:after {
content: “”;
border-top: 22px solid transparent;
border-bottom: 22px solid transparent;
border-left: 22px solid #f66fa2;
position: absolute; right: -22px; top: 0;
z-index: 1;
}
#crumbs ul li a:before {
content: “”;
border-top: 22px solid transparent;
border-bottom: 22px solid transparent;
border-left: 22px solid #fff;
position: absolute; left: 0; top: 0;
}
#crumbs ul li:first-child a {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
padding-left: 40px;
}
#crumbs ul li:first-child a:before {
display: none;
}
#crumbs ul li:last-child a {
padding-right: 30px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
#crumbs ul li:last-child a:after {
display: none;
}
#crumbs ul li a:hover {
background: #e56592;
transition: all 0.2s ease;
}
#crumbs ul li a:hover:after {
border-left-color: #e56592;
transition: all 0.2s ease;
}
[/css]
最后清除浮动:
[css]
.fixed {
clear: both;
}
[/css]
转载请保留链接:https://ilovetile.sijie.wang/3098/ 感谢您对版权的尊重
代码不会哎,,
这个很牛叉啊!多谢博主分享啊。
图片文件有汉字……以后可能造成麻烦……
这个。。没注意那么多,不过确实好像会有麻烦,以前就遇到过换服务器编码问题,看来得改一改了。
技术很炫,不过实用与否?
狂拽酷炫吊炸天
喜欢!收藏走了