JAVASCRIPT
VUE
REACT
NODE
ES6
TYPESCRIPT

Css实现卡券效果

2020. 07. 22    

Css实现卡券效果

Demo1

.coupon {
  width: 200px;
  height: 80px;
  background: radial-gradient(circle at right 50%, transparent 10px, #ffffff 0) top right / 50% 80px no-repeat,
    radial-gradient(circle at left 50%, transparent 10px, #ffffff 0) bottom left / 50% 80px no-repeat;
  filter: drop-shadow(3px 3px 3px #c5c5c5);
}

扫码

Demo1

.coupon1 {
  width: 200px;
  height: 80px;
  background: radial-gradient(circle at right bottom, transparent 10px, #ffffff 0) top right / 50% 40px no-repeat,
    radial-gradient(circle at left bottom, transparent 10px, #ffffff 0) top left / 50% 40px no-repeat,
    radial-gradient(circle at right top, transparent 10px, #ffffff 0) bottom right / 50% 40px no-repeat, 
    radial-gradient(circle at left top, transparent 10px, #ffffff 0) bottom left / 50% 40px no-repeat;
  filter: drop-shadow(3px 3px 3px #c5c5c5);
}

扫码