clip-path:能在不引入SVG的情况下,很好的使用SVG的一些属性,绘制各种图形
drop-shadow():将内部元素投影生成阴影,而非box-shadow生成盒子阴影
效果图:
代码示例:
.btn-wrap {
margin: auto;
filter: drop-shadow(2px 4px 3px rgba(50, 50, 0, 0.5));
}
.btn{
content: "";
width: 200px;
height: 64px;
line-height: 64px;
text-align: center;
background: linear-gradient(#f5e5bf, #fbe8c8, #f5e5bf);
color: #be9451;
font-size: 24px;
clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0 50%);
// box-shadow: inset 0px 0px 1px 1px #fff;
}
<div class="btn-wrap">
<div class="btn">领取红包</div>
</div>