纯css实现一个进度条显示效果代码

代码语言:html

所属分类:进度条

代码描述:纯css实现一个进度条显示效果代码

代码标签: 一个 进度 显示 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>BFW NEW PAGE</title>

    <style>
        * {
            box-sizing: border-box
        }

        .container {
            width: 100%;
            background-color: #ddd;
        }

        .skills {
            text-align: right;
            padding-right: 20px;
            line-height: 40px;
            color: white;
        }

        .html {
            width: 90%;
            background-color: #4CAF50;
        }
        .css {
            width: 80%;
            background-color: #2196F3;
        }
        .js {
            width: 65%;
            background-color: #f44336;
        }
        .php {
            width: 60%;
            background-color: #808080;
        }
    </style>
</head>.........完整代码请登录后点击上方下载按钮下载查看

网友评论0