css三角形拼接多边形

Posted 王多静

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css三角形拼接多边形相关的知识,希望对你有一定的参考价值。

 

如图效果,两边是四个直角三角形定位拼接出来的

html:

 <div class="award">
            <div class="triangle">
                <span class="triangle1"></span>
                <span class="triangle2"></span>
            </div>
            <span class="award-content">北京示范平台<b class="award-dot">·</b>2020-2021</span>
            <div class="triangle">
                <span class="triangle3"></span>
                <span class="triangle4"></span>
            </div>
        </div>

css:

          .award-content{
                float: left;
                padding: 0 34px;
                line-height: 40px;
                height: 40px;
                background: #c42a22;
                color: #fff;
                font-size: 18px;
            }
            .award-dot{
                font-size: 22px;
                margin: 0 24px;
            }
            .triangle{
                float: left;
                position: relative;
                height: 40px;
            }
            .triangle4{
                position: absolute;
                left: 0;
                top: 0;
                width: 0;
                height: 0;
                border-top: 20px solid #c42a22;
                border-right: 20px solid transparent;
            }
            .triangle1{
                position: absolute;
                right: 0;
                top: 0;
                width: 0;
                height: 0;
                border-top: 20px solid #c42a22;
                border-left: 20px solid transparent;
            }
            .triangle3{
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0;
                height: 0;
                border-bottom: 20px solid #c42a22;
                border-right: 20px solid transparent;
            }
            .triangle2{
                position: absolute;
                right: 0;
                bottom: 0;
                width: 0;
                height: 0;
                border-bottom: 20px solid #c42a22;
                border-left: 20px solid transparent;
            }

 

以上是关于css三角形拼接多边形的主要内容,如果未能解决你的问题,请参考以下文章

为啥这个 CSS 片段可以画一个三角形? [复制]

Unity Mesh 初体验

Unity MeshMeshFilterMeshRenderer扫盲

有没有办法在 CSS/HTML/JS 中以三角形/金字塔方式生成六边形?

如何利用CSS写一个六边形?

怎么利用CSS3绘制三角形