• 27.纯 CSS 创作一个精彩的彩虹 loading 特效


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

    感想:正方形-》圆-》旋转一定角度-》动画-》隐藏下一半

    HTML代码:

    <div class="rainbow">
        <div class="bows">
            <span></span>
            <span></span>
            <span></span>
            <span></span>
            <span></span>
            <span></span>
        </div>
    </div>

    CSS代码:

    html, body, .bows {
        margin: 0;
        padding: 0;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
    }
    .rainbow {
        width: 20em;
        height: 10em;
        overflow: hidden;
    }
    .bows {
        position: relative;
        width: 100%;
        height: 200%;
        /* border: 1px solid blue; */
        transform: rotate(225deg);
    }
    .bows span {
        position: absolute;
        width: calc(100% - 2em * (var(--n) - 1));
        height: calc(100% - 2em * (var(--n) - 1));
        padding: 0;
        border: 1em solid var(--color);
        box-sizing: border-box;
        border-top-color: transparent;
        border-left-color: transparent;
        border-radius: 50%;
        animation: rotating 3s infinite;
        animation-delay: calc(0.05s * var(--n));
    }
    @keyframes rotating {
        0%, 20% {
            transform: rotate(0deg);
        }
        80%, 100% {
            transform: rotate(360deg);
        }
    }
    .bows span:nth-child(1) {
        --n: 1;
        --color: orangered;
    }
    .bows span:nth-child(2) {
        --n: 2;
        --color: orange;
    }
    .bows span:nth-child(3) {
      --n: 3;
      --color: yellow;
    }
    .bows span:nth-child(4) {
      --n: 4;
      --color: mediumspringgreen;
    }
    .bows span:nth-child(5) {
      --n: 5;
      --color: deepskyblue;
    }
    .bows span:nth-child(6) {
      --n: 6;
      --color: mediumpurple;
    }
  • 相关阅读:
    04、图的基本考点
    06、排序【应用篇】
    07、顺序表编程考点
    08、单链表编程考点
    04、css position 属性
    03、css float 浮动属性
    02、线性表基础考点
    软件工程博客---小学期--日报6
    软件工程博客---小学期--日报5(含周末)
    软件工程博客---小学期--日报4
  • 原文地址:https://www.cnblogs.com/FlyingLiao/p/10297910.html
Copyright © 2020-2023  润新知