我想从div中切出一个三角形(或任何形状),以获得透明区域。 我正在尝试创建一个用于实例here的效果,当从对象中剪切出来时,会出现类似箭头的三角形。
非常感谢你!
答案 0 :(得分:0)
我正在添加一个jsfiddle链接,可以帮助您解决问题。
CSS
body { background: yellow; }
.bar {
position: relative;
width: 90%;
height: 30px;
margin: 0 auto;
}
.bar > a {
position: absolute;
top: 0px;
left: 60%;
width: 20%;
text-align: center;
font-size: 30px;
color: yellow;
padding-top: 30px;
}
.bar > a:before, .bar > a:after {
content:'';
position: absolute;
z-index: -1;
top: 0;
width: 0;
height: 30px;
border-top: 30px solid transparent;
}
.bar > a:before {
border-left: 20px solid red;
left: 50%;
}
.bar > a:after {
border-right: 20px solid blue;
right: 50%;
}
.bar:before, .bar:after {
content:'';
position: absolute;
top: 0;
height: 0;
border-top: 30px solid white;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.bar:before {
left: 0;
width: 70%;
border-right: 30px solid transparent;
}
.bar:after {
right:0;
width: 30%;
border-left: 30px solid transparent;
}