虚位以待,此位置招租
虚位以待,此位置招租
虚位以待,此位置招租
虚位以待,此位置招租
虚位以待,此位置招租
虚位以待,此位置招租
NexaHub聚合登录 阿里云服务器 99元/年 大流量卡 - 免开卡,免运费 172 - 大流量卡 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租
输入验证码,即可复制
扫描二维码输入:jiuge,即可获取验证码
只需要3秒时间
返回列表 发布新帖

[代码特效] HTML&CSS :炫酷的进度条动画

25 0
发表于 2025-3-3 09:04:02 | 查看全部 阅读模式
这段代码实现了一个具有动态背景、颜色变化和3D阴影的进度条动画。它不仅模拟了加载进度,还通过丰富的视觉效果增强了用户体验。

演示效果
640.gif

HTML&CSS
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>公众号关注:前端Hardy</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            background: #e8e8e8;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }

        .progress {
            --progress-color: rgb(184, 20, 255);
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 9999;
            height: 1.25rem;
            width: 200px;
            border-radius: 6px;
            outline: 1.5px solid #6a6a6b;
            border: 2px solid transparent;
            overflow: hidden;
            transition: all 125ms ease;
            animation: outline 4s ease infinite;
            background-color: white;
            box-shadow:
                inset 0.2rem 0.2rem 0.5rem #b8b8b9,
                inset -0.2rem -0.2rem 0.5rem #7c7c7c7c;
        }

        .progress::before {
            content: "loading";
            position: absolute;
            font-weight: 600;
            font-size: 14px;
            z-index: 9;
            animation: colors 4s ease infinite;
        }

        .bar {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            transform-origin: left center;
            animation: progress 4s ease infinite;
        }

        .bar::before {
            content: "";
            position: absolute;
            inset: 0;
            height: 100%;
            width: 100%;
            border-radius: 6px;
            transform-origin: left center;
            transition: all 125ms ease;
            background-size: 1.25rem 1.25rem;
            box-shadow:
                inset 0.3rem 0.3rem 0.6rem #ffffff8f,
                inset -0.2rem -0.2rem 0.5rem #77777777;
            background-image: linear-gradient(45deg,
                    #cccccc33 25%,
                    transparent 0,
                    transparent 50%,
                    #cccccc33 0,
                    #cccccc33 75%,
                    transparent 0,
                    transparent);
            animation: bar 1s linear infinite;
        }

        .bar::after {
            content: "";
            inset: 0;
            height: 100%;
            width: 100%;
            border-radius: 4px;
            background-color: var(--progress-color);
            background: linear-gradient(90deg, #3f5efb 0%, #fc466b 100%);
        }

        @keyframes outline {
            from {
                outline-color: #6a6a6b;
            }

            50% {
                outline-color: #fac826;
            }

            to {
                outline-color: #fc466b;
            }
        }

        @keyframes colors {
            from {
                color: #000;
            }

            to {
                color: #fff;
            }
        }

        @keyframes progress {
            from {
                transform: translateX(-100%);
            }

            to {
                transform: translateX(0%);
            }
        }

        @keyframes bar {
            from {
                background-position: 0 0;
            }

            to {
                background-position: 2.5rem 0;
            }
        }
    </style>
</head>

<body>
    <div class="progress">
        <div class="bar"></div>
    </div>

</body>
</html>

HTML 结构

progress:进度条的容器,包含整个进度条的样式和动画。
bar:进度条的内部元素,用于实现进度条的动态效果。

CSS 样式

body:设置页面背景颜色、布局方式(居中对齐)和全屏高度。
.progress:定义进度条的样式,包括大小、背景颜色、边框、阴影和动画效果。
.progress::before:在进度条上显示“loading”文本,并通过colors动画实现颜色变化效果。
.bar:定义进度条内部的动画效果,通过progress动画实现水平移动。
.bar::before:为进度条添加渐变背景和动态阴影效果,通过bar动画实现背景的滚动效果。
.bar::after:为进度条添加渐变背景颜色,从蓝色到红色的渐变。
@keyframes outline:定义进度条边框的颜色变化动画。
@keyframes colors:定义“loading”文本的颜色变化动画。
@keyframes progress:定义进度条的水平移动动画。
@keyframes bar:定义进度条背景的滚动动画。

免责声明

本社区仅提供信息交流平台,帖子内容由用户自行发布,不代表社区立场。用户对发布内容负全责,包括版权、隐私、诽谤等,社区不承担因使用社区内容导致的损失。禁止发布侵权、隐私信息,发现侵权请联系我们。社区不负责第三方内容,用户因访问第三方内容产生的损失,社区不担责。用户须遵守规则和法律,不得发布违法、不当内容,违规内容将被删除。发表帖子即同意本声明,不同意请勿发帖。


特别提醒:网络空间并非法外之地,请广大用户自觉遵守法律法规,共同营造健康、文明、有序的网络环境。

本社区运营团队

联系我们: 如有疑问或发现违规行为,请联系管理员:kefu@foxccs.com

远方路灯明灭,银河倾斜,一斛星斗洒满天街。

回复

快捷回复: 经历想经历的,成为想成为的 - 九歌社区
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

投诉/建议联系

jiubbs2025@163.com

未经授权禁止转载,复制和建立镜像,
如有违反,追究法律责任
  • QQ交流群
  • 微信公众号
Copyright © 2001-2025 九歌社区 版权所有 All Rights Reserved.

手机版|小黑屋|帮助|九歌社区   |   GMT+8, 2025-4-3 15:02 , Processed in 0.384538 second(s), 35 queries .

关灯 在本版发帖
扫一扫添加微信客服
手机扫一扫访问
返回顶部
快速回复 返回顶部 返回列表