• HTML+CSS实现审核流程步骤效果


    效果图如下

    每一个结点写一个div

    body{
        margin: 10px;
        padding: 10px;
        background-color: #EEEEEE;
    }
    
    .progess-bar{
        with: 100%;
        height: 100px;
    }
    
    .ball{
         20px;
        height: 20px;
        border-radius: 10px;
        margin-left: 20px;
    }
    
    .progress{
         2px;
        height: 80px;
        margin-left: 29px;
    }
    
    .detail{
        margin-left: 40px;
        float:left;
        font-size: 12px;
        color: #FF5722;
        position: relative;
        top: -20px;
        left: 5px;
    }
    
    .flow-detail{
        margin: 2px;
    }
    
    .active{
        background-color: #FF5722
    }
    
    .negative{
        background-color: #9F9F9F
    }
    

    html

    <html>
        
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
            <link rel="stylesheet" href="/discount/submit/static/css/audit-progress.css"
            />
            <title>
            </title>
        </head>
        
        <body>
            <div class="progess-bar">
                <div class="ball active">
                </div>
                <div class="detail">
                    <div class="flow-detail">
                        创建流程
                    </div>
                    <div class="flow-detail">
                        2017/6/14 下午5:07:44
                    </div>
                </div>
                <div class="progress active">
                </div>
            </div>
            <div class="progess-bar">
                <div class="ball active">
                </div>
                <div class="detail">
                    <div class="flow-detail">
                        信息提交完成
                    </div>
                    <div class="flow-detail">
                        2017/6/14 下午6:08:44
                    </div>
                </div>
                <div class="progress negative">
                </div>
            </div>
        </body>
    
    </html>
    
  • 相关阅读:
    String分割成int[]和List<Integer>
    linux查询正在运行的jar包并kill进程
    linux自动清理n天(1个月)前日志文件
    zookeeper命令行操作
    sql开窗函数
    hdfs shell操作
    centos7安装mysql8
    hadoop集群安装
    hdfs基本介绍
    IDEA下运行MAVEN项目,报"程序包******不存在"
  • 原文地址:https://www.cnblogs.com/umgsai/p/7019599.html
Copyright © 2020-2023  润新知