javascript - 求一个进度条插件在手机端上的
阿神
阿神 2017-04-11 13:07:51
[JavaScript讨论组]

类似这种效果的,有什么好的插件吗,或者自己写怎么写,要求能自适应。

阿神
阿神

闭关修行中......

全部回复(3)
大家讲道理

这个亲手撸也不过十分钟吧?

<!DOCTYPE html>
<html>
    <head>
        <title>progress bar</title>
    </head>
    <body>
        <p class=progress-bar>
            <p class=item>
                <p class=cycle></p>
                <p class=text>提交</p>
            </p>
            <p class="active item">
                <p class=cycle></p>
                <p class=text>人力审核</p>
            </p>
            <p class=item>
                <p class=cycle></p>
                <p class=text>审核完成发放</p>
            </p>
        </p>
    </body>
</html>
body {
    background-color: white;
}

.progress-bar {
    display: flex;
    flex-direction: row;
}

.item {
    display: flex;
    width: 1%;
    flex-grow: 1;
    padding-top: 20px;
    justify-content: center;
    position: relative;
    padding-top: 20px;
}

.item:first-child,
.item:last-child {
    width: auto;
    flex-grow: 0;
    flex-shrink: 0;
}

.item > .cycle {
    z-index: 2;
    position: absolute;
    top: 5px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: red;
}

.item.active > .cycle {
    top: 1px;
    margin-left: -9px;
    width: 18px;
    height: 18px;
}

.item:before, .item:after {
    z-index: 1;
    content: "";
    width: 50%;
    height: 6px;
    position: absolute;
    top: 7px;
    background-color: red;
}

.item:before {
    left: 0;
}

.item:after {
    left: 50%;
}

.item:first-child:before,
.item:last-child:after {
    display: none;
}

.item.active:after,
.item.active ~ .item:before,
.item.active ~ .item.after,
.item.active ~ .item > .cycle {
    background-color: #999;
}

在线demo: http://runjs.cn/code/dyhmavqe

怪我咯

element ui 里面就有的
或者 http://www.jq22.com/jquery-in... 这里有个不知道可不可以

大家讲道理

自己写一个简单的

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号