zoukankan      html  css  js  c++  java
  • 8.纯 CSS 创作一个充电 loader 特效

    原文地址:https://segmentfault.com/a/1190000014669547

    右边多出来的是 :after 的border 

    HTML代码:

    <div class="battery"></div>

    CSS代码:

    html, body {
        margin: 0;
        padding: 0;
        height: 100%;
        display:flex;
        justify-content: center;
        align-items: center;
        /*background: linear-gradient(to bottom, teal, aqua); */
    }
    .battery{
        width: 6em;
        height: 3em;
        color: midnightblue;
        border: 0.5em solid currentColor;
        border-radius: 0.2em;
        font-size: 2em;
        position: relative;
        /* 充电颜色 */
        background-image: linear-gradient(to right, green, green);
        background-repeat: no-repeat;
        /* 充电图像大小 */
        background-size: 30% 80%;
        /* 给内部充电图像定位  */
        background-position: top 0.3em left 0.3em;
        animation: charge 5s steps(8) infinite;
    }
    .battery::after{
        position: absolute;
        content: '';
        width: 0.5em;
        height: 2em;
        background-color: currentColor;
        top: 0.5em;
        right: -1em;
        border-radius: 0 0.2em 0.2em 0;
    }
    @keyframes charge {
        from {
            background-size: 10% 80%;
        }
        to {
            background-size: 95% 80%;
        }
    }
  • 相关阅读:
    c#的Marshal
    爬虫之requests详解
    爬取抖音视频
    爬取拉钩网
    爬虫自动登陆GitHub
    爬取博客园博客
    爬取煎蛋网文章
    爬取抽屉热搜榜文章
    准备
    爬虫示例
  • 原文地址:https://www.cnblogs.com/FlyingLiao/p/10116030.html
Copyright © 2011-2022 走看看