CSS 画三角、扇形、圆形

<div> 元素为矩形,而它的每个border为一个等腰梯形, 上底为<div>的width / height, 高为border的粗细。

height= width=20px; border=20px (上下orange, 左右red).

把四边的上底设为0, 即width = 0, height=0 时,梯形就变成三角形了。


div width=height=0 px

.divideRect{
    		height: 0px;
            width: 0px;
            border-left: 20px solid red;
            border-right: 20px solid red;
            border-top: 20px solid orange;
            border-bottom: 20px solid orange;
    	}

接着把四面的border中的两条border变成transparent 透明,一条不定义,一条border填上颜色,三角形就出现了。

triangle

.triangle{
          height: 0px;
          width: 0px;
          border-left: 20px solid transparent;
          border-right: 20px solid transparent;
          border-bottom: 20px solid orange;
      }

画扇形则是在三角形的基础上把border内折50%的弧度

pie sector

 .triangle{
           height: 0px;
           width: 0px;
           border-left: 40px solid transparent;
           border-right: 40px solid transparent;
           border-bottom: 40px solid orange;
           border-radius: 50%; /*扇形:要求 border-left = right*/
       }

同理,画圆形就是在四边都在的基础上内折50%弧度

circle

.circle{
            height: 100px;
            width: 100px;
            border-radius: 50px;
            background-color: darkgreen;
        }
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值