002-CSS-三角形

普通三角形

💡 Tips:设置 div 盒子宽高为零,使用单边框实现

.triangle {
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #ccc;
}

带阴影的三角形:box-shadow

💡 Tips:在普通三角形基础上,添加 box-shadow ,设置阴影方向、偏移量,搭配伪元素遮挡 实现

.tips-add-shadow {
  width: 300px;
  height: 200px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 2px 2px 20px #ccc;
  margin-left: 50px;
  position: relative;
  margin-bottom: 50px;
}

.tips-add-shadow::before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: 180px;
  left: calc(50% - 20px);
  background: #fff;
  border: 20px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
  transform: rotate(135deg);
  box-shadow: 2px -2px 20px #ccc;
}

.tips-add-shadow::after {
  content: '';
  width: 80px;
  height: 40px;
  position: absolute;
  top: 160px;
  left: calc(50% - 40px);
  background: #fff;
}

实现效果图如下:
在这里插入图片描述

带阴影的三角形:filter

💡 Tips:filter 为滤镜的意思,可实现很多特殊样式。此处采用 filter 实现阴影

.tips-add-shadow {
  width: 300px;
  height: 200px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 2px 2px 20px #ccc;
  margin-left: 50px;
  position: relative;
  margin-bottom: 50px;
}

.tips-add-shadow::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: 200px;
  left: calc(50% - 30px);
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #fff;
  filter: drop-shadow(0 3px 2px #ccc);
}
  • 10
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值