陈浩 2019-06-21
在做UI(页面重构)的时候,免不了和各种小图标打交道,这其中最多的应该是三角形以及箭头,一般情况下可以通过伪类使用unicode解决大部分问题。
现在我们来总结下几种使用css绘制三角形的方法,dom结构如下:
<div class="triangle"></div>
代码忽略
.triangle:after{ display:block; content:"\25B2"; color:"#fd5353"; font-size:20px; }
注意,伪类必须加上content属性,否则不生效
.triangle{ width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 100px solid red; }
使用border绘制三角形是什么原理?事实上,宽度相等的border是以45度对接的,如下图:
那么没有了上border就是如下图:
再设置div的宽度为0,就是如下图:
再设置div的高度为0,如下图:
最后设置左右border的颜色为透明,如下图:
再来个动图:
通过这种原理,我们可以做更多的图形,比如五角星、六角星等,更多图形请移步shapesofcss
.triangle { width: 30%; padding-bottom: 21.27%; /* = width / 1.41 */ position: relative; //划重点 overflow:hidden; } .triangle: before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #0079C6; //划重点 transform-origin: 0 100%; transform: rotate(45deg); }
为什么是1.41,因为正方形的对角线长度是约等于1.414。
.triangle{ width:200px; height:200px; background:#fd5353; clip-path: polygon(50% 0, 0 100%, 100% 100%); }
clip-path不支持安卓4.4以下,其余均需使用浏览器前缀-webkit,caniuse
详细请移步 clip-path