重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要介绍了CSS3如何使用新增边框属性制作关门开门效果,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
创新互联公司是专业的无极网站建设公司,无极接单;提供网站建设、成都做网站,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行无极网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!
border:宽度类型颜色小数不支持
border-width:边框的宽度 thin细的
medium默认的
thick粗的
不常用
数值px
border-style:none没有边框 = hidden(用于表格除外,用来解决表格边框冲突)
solid实线型
dotted点状
dashed虚线
double双线
border-color:十六进制 #fff transparent透明
border: 1px solid #000;
border-top: 1px solid #000;上边框
border-top-width
border-top-style
border-top-color
border-right:
border-bottom:
border-left:
css3新增的属性
border-image: 使用图片来填充边框
border-image-source:图片的来源,路径
border-image-slice:图片的分割方式
border-image-width:图片的宽度
border-image-outset:图片扩展
border-image-repeat:图片重复
效果实现代码:
*{padding: 0;margin: 0;}
#box{
width: 300px;
height: 400px;
background: url(img/05.jpg);
background-size:cover;
margin: 150px auto;
position: relative;
overflow: hidden;
}
.left{width: 100%;
height: 100%;
background: rgba(122,0,0,0.5);
position: absolute;
top: 0;
left: -100%;
transition: all 2s;
}
.right{
width: 100%;
height: 100%;
background: rgba(0,0,135,0.5);
position: absolute;
top: 0;
left: 100%;
transition: all 4s;
}
#box:hover .left{
left:-50%
}
#box:hover .right{
left:50%
}
感谢你能够认真阅读完这篇文章,希望小编分享的“CSS3如何使用新增边框属性制作关门开门效果”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联行业资讯频道,更多相关知识等着你来学习!