点击查看html编辑器说明文档

进度步骤HTML样例edit icon

|
|
Fork(复制)
|
|
提交反馈
嵌入
设置
下载
HTML
CSS
JS
格式化
支持Emmet,输入 p 后按 Tab键试试吧!
<head> ...
展开
</head>
<body>
            
            <!DOCTYPE html>
<html lang="zh">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>进度步骤图</title>
    <style>
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 页面居中布局 */
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #e9e9e9;
            font-family: Arial, sans-serif;
        }

        /* 步骤卡片容器 - 水平布局 */
        .steps-container {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            gap: 15px;
        }

        /* 单个步骤卡片的基本样式 */
        .step-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            position: relative;
            flex: 1;
            width: 200px;
            min-width: 200px;
        }

        /* 步骤字母样式 (A/B/C/D) */
        .step-letter {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* 步骤标题样式 */
        .step-title {
            font-size: 20px;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid;
        }

        /* 步骤内容描述样式 */
        .step-content {
            color: #888;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* 进度箭头样式 - 使用 clip-path 创建箭头形状 */
        .progress-arrow {
            position: absolute;
            bottom: 100px;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--theme-color);
            clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
        }

        /* 百分比圆圈容器 */
        .percentage-wrapper {
            position: relative;
            width: 80px;
            height: 80px;
            margin: -10px auto 20px;
            z-index: 2;
        }

        /* 百分比圆圈样式 */
        .percentage-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 24px;
            border: 2px solid white;
            background: var(--theme-color);
        }

        /* 步骤名称样式 */
        .step-name {
            text-align: center;
            font-weight: bold;
            font-size: 18px;
            color: var(--theme-color);
        }

        /* 每个步骤的主题颜色 */
        .step-1 { --theme-color: #00d4b1; } /* 绿色 */
        .step-2 { --theme-color: #b042ff; } /* 紫色 */
        .step-3 { --theme-color: #ff6b6b; } /* 红色 */
        .step-4 { --theme-color: #5c9eff; } /* 蓝色 */

        /* 应用主题颜色到步骤字母和标题 */
        .step-card .step-letter {
            color: var(--theme-color);
        }

        .step-card .step-title {
            border-color: var(--theme-color);
            color: var(--theme-color);
        }
    </style>
</head>

<body>
    <div class="steps-container">
        <div class="step-card step-1">
            <div class="step-letter">A.</div>
            <div class="step-title">第一阶段</div>
            <div class="step-content">
                这是第一个阶段的详细说明,包含了该阶段需要完成的主要任务和目标。
            </div>
            <div class="progress-arrow"></div>
            <div class="percentage-wrapper">
                <div class="percentage-circle">10%</div>
            </div>
            <div class="step-name">STEPS 1</div>
        </div>

        <div class="step-card step-2">
            <div class="step-letter">B.</div>
            <div class="step-title">第二阶段</div>
            <div class="step-content">
                这是第二个阶段的详细说明,包含了该阶段需要完成的主要任务和目标。
            </div>
            <div class="progress-arrow"></div>
            <div class="percentage-wrapper">
                <div class="percentage-circle">25%</div>
            </div>
            <div class="step-name">STEPS 2</div>
        </div>

        <div class="step-card step-3">
            <div class="step-letter">C.</div>
            <div class="step-title">第三阶段</div>
            <div class="step-content">
                这是第三个阶段的详细说明,包含了该阶段需要完成的主要任务和目标。
            </div>
            <div class="progress-arrow"></div>
            <div class="percentage-wrapper">
                <div class="percentage-circle">50%</div>
            </div>
            <div class="step-name">STEPS 3</div>
        </div>

        <div class="step-card step-4">
            <div class="step-letter">D.</div>
            <div class="step-title">第四阶段</div>
            <div class="step-content">
                这是第四个阶段的详细说明,包含了该阶段需要完成的主要任务和目标。
            </div>
            <div class="progress-arrow"></div>
            <div class="percentage-wrapper">
                <div class="percentage-circle">75%</div>
            </div>
            <div class="step-name">STEPS 4</div>
        </div>
    </div>
</body>

</html>
        
</body>
预览
控制台