洛丽糖(luolt.cn),致力于互联网资源的共享, 分享各类技术教程,typecho主题模板,zblog主题模板,网站源码等各种资源。
首页 » 收集 » 正文内容
纯CSS实现步骤进度条效果
寻梦xunm| 918| 收集
3年前
超过1245天 温馨提示
本文最后更新于2021年07月07日,已超过1245天没有更新,若内容或图片失效,请留言反馈。

当我们收到这样的步骤进度条的需求时,我们之前的做法是用图片作为背景图,才可以做出这样的效果,现在我们只需要通过css就可以完成这样的效果。
1624374720779485.png
实现原理很简单,通过css的before和after属性添加块状元素,然后控制其border的样式实现箭头的效果,废话不多说,直接看代码:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSS3实现步骤进度条效果-YzmCMS博客</title>
    <style>
        .main{
            width: 90%;
            margin:50px auto;
        }
        .yzm-item{
            width: 15%;
            float: left;
            position: relative;
            padding: 5px 0 5px 8px;
            line-height: 20px;
            background: #43a047;
            text-align: center;
            font-size: 14px;
            color: #fff;
            margin-right: 8px
        }

        .yzm-item::before {
            content: ' ';
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 10px;
            border-color: transparent transparent transparent #43a047;
            position: absolute;
            top: 0;
            left: 0;
            border-left-color: #fff;
            z-index: 1;
        }
        .yzm-item::after {
            content: ' ';
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 10px;
            border-color: transparent transparent transparent #43a047;
            position: absolute;
            top: 0;
            right: -10px;
            z-index: 2;
        }

        .yzm-item:hover {
            background: #1565c0;
        }
        .yzm-item:hover:after {
            border-left-color: #1565c0;
        }
    </style>
</head>
<body>
    
    <div>
        <div>
            需求讨论
        </div>
        <div>
            产品设计
        </div>
        <div>
            开发制作
        </div>
        <div>
            功能测试
        </div>
        <div>
            竣工交付
        </div>
    </div>
</body>
</html>

文章来源于:https://blog.yzmcms.com/css/232.html

0 赞 or 打赏
喜欢就打赏一点
微信 支付宝
20240430140454171445709417079.png
20240430140454171445709417079.png
隐私
Q Q:1340326824
邮箱:vipshiyi@qq.com
QQ群:422720328

我的音乐