为了账号安全,请及时绑定邮箱和手机立即绑定

用css画三角形(提示框和纯色)

标签:
Html/CSS
三角形使用情形
  • 经常用于提示框,下拉菜单等(csdn也很多用到,最后一图),看图:

三角形三角形这三角形

  • 由于在网页中经常要用到,所以特地研究
  • 图片实现(感觉low)、svg实现(小题大作了),所以最后还是css画比较不错,兼容性也不错
三角形画法
  1. html结构
    <div class="triangle"> </div>
  2. 三角形画法
    • 用border画出,当width、height均为100px时
    .triangle {
        width: 100px;
        height: 100px;
        border-left: 10px solid #7d7b7b;
        border-top: 10px solid #5851c3;
        border-right: 10px solid #21a4d6;
        border-bottom: 10px solid #4ed621;
        box-sizing: border-box;
    }

-->结果:border
改变{width:0; height:0}-->这里写图片描述

-->再去掉border-top--->这里写图片描述

-->可以看见上面的一半已经没有了

-->设置左右两边border-color:transparent; --> 这里写图片描述
-->就得到了想要的三角形了,这是向上的,
想要哪边就画哪边的border,
并且让它相邻两边的border-color:transparent
图片描述

-->代码

    .triangle {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        /*border-top: 10px solid #5851c3;*/
        border-right: 10px solid transparent;
        border-bottom: 10px solid #4ed621;
        box-sizing: border-box;
    }
画提示框三角形(有边缘的)

如图:边缘三角形

  • 原理:先画一个三角形,再画白色三角形的,调整几像素位置,覆盖掉一边

--> 这里写图片描述

  • 代码
 .triangle {
        position: relative;
        width: 100px;
        height: 50px;
        border: 2px solid #4ed621;
        border-radius: 5px;
    }

    .triangle:before {
        position: absolute;
        content: "";
        top: -10px;
        left: 25px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #4ed621;
    }
    /* 白色覆盖*/
    .triangle:after {
        position: absolute;
        content: "";
        /*减少两像素*/
        top: -8px;
        left: 25px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #fff;
    }
      <div class="triangle"></div>

结果:
--> hh-->h

  • 至此,三角形画完,只用到了css2的属性,兼容性一览无余
  • 首发地址
点击查看更多内容
2人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消