CSS教程高级应用 2个纯CSS面包屑导航栏实现代码
建站知识 2021-07-03 08:15www.168986.cn长沙网站建设
狼蚁网站SEO优化是两个纯CSS 面包屑导航栏实现代码,在网上找了一些方法但觉得都不合适唯独这两个纯css的就差不多了,狼蚁网站SEO优化一聚长沙网络推广来给大家整理一下。
方法一,
说明本方法使用CSS3,无图片,兼容各种webkit系浏览器,兼容。先上图
1.是HTML代码,比较简单,只需要一个简单的ul和li即可代码如下
复制代码
代码如下:<div id="crumbs">
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">目录</a></li>
<li><a href="#">子目录</a></li>
</ul>
<div class="fixed"></div>
</div>
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">目录</a></li>
<li><a href="#">子目录</a></li>
</ul>
<div class="fixed"></div>
</div>
2.接下来是CSS代码,是设定常规的li浮动和a标签美化
复制代码
代码如下:#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;
}
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;
}
接下来就是面包屑导航的关键地方,通过before和after来创建箭头效果
复制代码
代码如下:#crumbs ul li a:after {
content: "";
border-: 22px solid transparent;
border-bottom: 22px solid transparent;
border-left: 22px solid #f66fa2;
position: absolute; right: -22px; : 0;
z-index: 1;
}
#crumbs ul li a:before {
content: "";
border-: 22px solid transparent;
border-bottom: 22px solid transparent;
border-left: 22px solid #fff;
position: absolute; left: 0; : 0;
}
#crumbs ul li:first-child a {
border--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--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;
}
content: "";
border-: 22px solid transparent;
border-bottom: 22px solid transparent;
border-left: 22px solid #f66fa2;
position: absolute; right: -22px; : 0;
z-index: 1;
}
#crumbs ul li a:before {
content: "";
border-: 22px solid transparent;
border-bottom: 22px solid transparent;
border-left: 22px solid #fff;
position: absolute; left: 0; : 0;
}
#crumbs ul li:first-child a {
border--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--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;
}
清除浮动
复制代码
代码如下:.fixed {
clear: both;
}
clear: both;
}
方法二
XML/HTML Code复制内容到剪贴板
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://.jb51./TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="https://.jb51./1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset="utf-8″ />
- <title>纯css制作面包屑,兼容IE6</title>
- <style type="text/css">
- {margin:0;padding:0;list-style-type:none;}
- a,img{border:0;}
- body{font:12px/180% Arial, Helvetica, sans-serif, "新宋体";}
- / demo /
- .demo{width:600px;margin:100px auto;background:#f0f0f0;position:relative;}
- .demo ul{height:32px;overflow:hidden;}
- .demo li{float:left;width:200px;text-align:center;position:relative;z-index:2;font-weight:bold;font-size:14px;line-height:32px;}
- .demo li em{position:absolute;right:-24px;:-8px;width:0;height:0;line-height:0;border-width:24px 0 24px 24px;border-color:transparent transparent transparent #fff;border-style:dashed dashed dashed solid;}
- .demo li i{position:absolute;right:-16px;:0;width:0;height:0;line-height:0;border-width:16px 0 16px 16px;border-color:transparent transparent transparent #f0f0f0;border-style:dashed dashed dashed solid;}
- .demo li.current{background:#f60;color:#fff;z-index:1;}
- .demo li.current i{border-color:transparent transparent transparent #f60;}
- </style>
- </head>
- <body>
- <div class="demo">
- <ul class="clearfix">
- <li>面包屑一<em></em><i></i></li>
- <li class="current">面包屑二<em></em><i></i></li>
- <li>面包屑二<em></em><i></i></li>
- </ul>
- </div>
- </body>
- </html>
长沙网站设计
- 如何自己建一个网站 自己想建个网站,怎么建
- 如何制作网站免费建站 创建网站免费注册
- html简单网页代码 html简单网页代码超链接
- dreamweaver网页制作 dreamweaver网页制作模板
- 上海网站建设 上海网站建设制作微信
- 如何制作网站和网页 如何制作一个网页
- html网页制作代码大全 端午节html网页制作代码大
- app开发公司 app开发公司前十名
- html网页制作 html网页制作文字居中
- app制作一个需要多少钱 请人制作一个app多少钱
- 成都网站制作 成都网站制作维护
- 百度建一个网站多少钱 百度做个公司网站要多少
- html+css网页制作成品 web网页制作成品css+javascrip
- html网页制作案例 html网页设计案例
- html+css网页制作成品 web网页制作成品css+javascrip
- 个人网站模板 个人网站模板HTML