css画图形

一、效果

二、代码

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>实现</title>
    <style lang="scss" scoped>
        .box {
            display: flex;
            padding: 10px;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        div {
            margin-top: 10px;
        }

        .div1 {
            width: 0px;
            height: 0px;
            border-top: 100px solid transparent;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 100px solid green;
        }

        .div2 {
            width: 0px;
            height: 0px;
            border: 100px solid;
            border-color: transparent transparent blue transparent;
        }

        .div3 {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, deeppink, yellowgreen);
        }

        .div4 {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, deeppink, yellowgreen 50%, yellowgreen 50%, deeppink 100%);
        }

        .div5 {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: pink;
        }

        .div6 {
            width: 100px;
            height: 200px;
            border-radius: 100%;
            border-left: 100px solid red;
        }

        .div7 {
            width: 200px;
            height: 200px;
            background-color: yellow;
            clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
        }

        .div8 {
            width: 200px;
            height: 200px;
            background-color: yellow;
            clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
        }

        .div9 {
            width: 200px;
            height: 200px;
            background-color: yellow;
            clip-path: circle(50%);
        }

        .div10 {
            width: 200px;
            height: 200px;
            background-color: yellow;
            clip-path: circle(50% at 100% 100%);
        }

        .div11 {
            width: 200px;
            height: 200px;
            background-color: yellow;
            clip-path: ellipse(50% 100% at 100% 100%);
        }

        .div12 {
            width: 200px;
            height: 200px;
            background-color: yellow;
            clip-path: path('M 50 50 L 150 50 L 150 150 L 50 150 z');
        }

        .div13 {
            width: 200px;
            height: 200px;
        }

        .star13 {
            margin-top: 50px;
            margin-left: 50px;
            width: 0px;
            height: 0px;
            border-style: solid;
            border-color: red transparent transparent hotpink;
            border-width: 50px;
        }

        .div14 {
            width: 200px;
            height: 200px;
        }

        .star14 {
            margin-top: 50px;
            margin-left: 50px;
            width: 30px;
            height: 30px;
            border-style: solid;
            border-color: red yellow skyblue yellow;
            border-width: 40px;
        }

        .div15 {
            width: 200px;
            height: 200px;
        }

        .star15 {
            margin-top: 50px;
            margin-left: 50px;
            width: 30px;
            height: 30px;
            border-style: solid;
            border-color: transparent transparent skyblue transparent;
            border-width: 40px;
        }

        .div16 {
            width: 600px;
            height: 150px;
            display: flex;
        }
    </style>
</head>
<body>
<div class="box">

    <div class="div1"></div>
    <div class="div2"></div>
    <div class="div3"></div>
    <div class="div4"></div>
    <div class="div5"></div>
    <div class="div6"></div>
    <div class="div7"></div>
    <div class="div8"></div>
    <div class="div9"></div>
    <div class="div10"></div>
    <div class="div11"></div>
    <div class="div12"></div>
    <div class="div13">
        <div class="star13"></div>
    </div>
    <div class="div14">
        <div class="star14"></div>
    </div>
    <div class="div15">
        <div class="star15"></div>
    </div>
    <div class="div16">
        <svg>
            <path d="M 0 50 L 150 50 L 200 75 L 150 100 L 0 100 z" fill="green"></path>
        </svg>
        <svg>
            <path d="M 0 50 L 150 50 L 200 75 L 150 100 L 0 100 z" fill="red"></path>
        </svg>
        <svg>
            <path d="M 0 50 L 150 50 L 200 75 L 150 100 L 0 100 z" fill="gray"></path>
        </svg>
    </div>
</div>
</body>
</html>
相关推荐
linweidong3 小时前
C++ 模块化编程(Modules)在大规模系统中的实践难点?
linux·前端·c++
leobertlan7 小时前
2025年终总结
前端·后端·程序员
子兮曰7 小时前
OpenClaw架构揭秘:178k stars的个人AI助手如何用Gateway模式统一控制12+通讯频道
前端·javascript·github
百锦再8 小时前
Reactive编程入门:Project Reactor 深度指南
前端·javascript·python·react.js·django·前端框架·reactjs
莲华君8 小时前
React快速上手:从零到项目实战
前端·reactjs教程
百锦再8 小时前
React编程高级主题:测试代码
android·前端·javascript·react.js·前端框架·reactjs
易安说AI8 小时前
Ralph Loop 让Claude无止尽干活的牛马...
前端·后端
失忆爆表症10 小时前
05_UI 组件库集成指南:Shadcn/ui + Tailwind CSS v4
前端·css·ui
小迷糊的学习记录10 小时前
Vuex 与 pinia
前端·javascript·vue.js
发现一只大呆瓜10 小时前
前端性能优化:图片懒加载的三种手写方案
前端·javascript·面试