大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要为大家展示了“CSS怎样制作箭头图标”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“CSS怎样制作箭头图标”这篇文章吧。
成都创新互联专注于平鲁企业网站建设,响应式网站,商城网站建设。平鲁网站建设公司,为平鲁等地区提供建站服务。全流程定制开发,专业设计,全程项目跟踪,成都创新互联专业和态度为您提供的服务
css3功能非常强大,之前需要图片完成的icon,现在我们只需要几段css代码就可以实现此功能。下面给大家分享纯css制作的圆,椭圆,三角形箭头图标,非常使用,需要的朋友参考下吧
圆:
.yuan{
width:100px;
height:100px;
-moz-border-radius:50%;
-webkit-border-radius:50%;
border-radius:50%;
background-color:red;
}
椭圆
.oval {
width: 200px;
height: 100px;
background-color: red;
-moz-border-radius: 100px / 50px;
-webkit-border-radius: 100px / 50px;
border-radius: 100px / 50px;
}
箭头:
.arrow{
content: '';
position: absolute;
width: 30px;
height: 30px;
border: 10px solid #f5b24a;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
transform: rotate(-135deg);
border-top: none;
border-right: none;
top: 9px;
}
三角形:
.rencentle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid red;
}
以上是“CSS怎样制作箭头图标”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联行业资讯频道!