css特效 变异电池 技术=> css的filter 中hue-rotate

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>



        html,
        body {
            width: 100%;
            height: 100%;
            display: flex;
            background: #e4e4e4;
        }

        .container {
            position: relative;
            width: 140px;
            margin: auto;
        }

        .battery {
            height: 520px;
            box-sizing: border-box;
            border-radius: 15px 15px 5px 5px;
            filter: drop-shadow(0 1px 3px rgba(0,0,0,0.22));
            background: #fff;
            z-index: 1;
        }
        .battery::before {
             content: "";
             position: absolute;
             width: 26px;
             height: 10px;
             left: 50%;
             top: 0;
             transform: translate(-50%, -10px);
             border-radius: 5px 5px 0 0;
             background: rgba(240, 240, 240, .88);
         }

        .battery::after {
             content: "";
             position: absolute;
             left: 0;
             right: 0;
             bottom: 0;
             top: 90%;
             background: linear-gradient(to bottom, #7abcff 0%, #00BCD4 44%, #2196F3 100%);
             border-radius: 0px 0px 5px 5px;
             box-shadow: 0 14px 28px rgba(33, 150, 243, 0), 0 10px 10px rgba(9, 188, 215, 0.08);
             animation: charging 6s linear infinite;
             filter: hue-rotate(50deg);
         }
        @keyframes charging {
            50% {
                box-shadow: 0 14px 28px rgba(0, 150, 136, 0.83), 0px 4px 10px rgba(9, 188, 215, 0.4);
            }

            95% {
                top: 5%;
                filter: hue-rotate(0deg);
                border-radius: 0 0 5px 5px;
                box-shadow: 0 14px 28px rgba(4, 188, 213, .2), 0 10px 10px rgba(9, 188, 215, 0.08);
            }
            100% {
                top: 0%;
                filter: hue-rotate(0deg);
                border-radius: 15px 15px 5px 5px;
                box-shadow: 0 14px 28px rgba(4, 188, 213, 0), 0 10px 10px rgba(9, 188, 215, 0.4);
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="battery"></div>
    </div>
    <div id="contant">

    </div>
</body>
</html>

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值