打造极简风格动效 —— 5 分钟轻松实现惊艳、震撼人心的视觉效果

news2024/11/17 9:32:45

9a69fede8b2044a79dd834e3e48f20b4.png前期回顾f8e3cc1a0f694ac2b665ca2ad14c49d7.png  

是不是在为 API 烦恼 ?好用免费的api接口大全呼之欲出_免流接口api_彩色之外的博客-CSDN博客APi、常用框架、UI、文档—— 整理合并https://blog.csdn.net/m0_57904695/article/details/130459417?spm=1001.2014.3001.5501 👍 本文专栏:开发技巧

用css打造 惊艳特效,快来一键三连抱走吧,源代码都在博文中,建议收藏以便下次快速找到。

目录

 Loading 篇

📚 铅笔loading

📢 笑脸loading

🍭 圆盘loading

⚡ 谢谢观看


 Loading 篇

图例就不一一展示了,直接上代码,拷贝即走

📚 铅笔loading

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>彩色之外——铅笔loading</title>
    <style>
      .pencil {
        display: block;
        position: fixed;
        top: 50%;
        left: 50%;
        margin: -5em 0 0 -5em;
        width: 10em;
        height: 10em;
      }

      .pencil__body1,
      .pencil__body2,
      .pencil__body3,
      .pencil__eraser,
      .pencil__eraser-skew,
      .pencil__point,
      .pencil__rotate,
      .pencil__stroke {
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
      }

      .pencil__body1,
      .pencil__body2,
      .pencil__body3 {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
      }

      .pencil__body1 {
        -webkit-animation-name: pencilBody1;
        animation-name: pencilBody1;
      }

      .pencil__body2 {
        -webkit-animation-name: pencilBody2;
        animation-name: pencilBody2;
      }

      .pencil__body3 {
        -webkit-animation-name: pencilBody3;
        animation-name: pencilBody3;
      }

      .pencil__eraser {
        -webkit-animation-name: pencilEraser;
        animation-name: pencilEraser;
        -webkit-transform: rotate(-90deg) translate(49px, 0);
        -ms-transform: rotate(-90deg) translate(49px, 0);
        transform: rotate(-90deg) translate(49px, 0);
      }

      .pencil__eraser-skew {
        -webkit-animation-name: pencilEraserSkew;
        animation-name: pencilEraserSkew;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
      }

      .pencil__point {
        -webkit-animation-name: pencilPoint;
        animation-name: pencilPoint;
        -webkit-transform: rotate(-90deg) translate(49px, -30px);
        -ms-transform: rotate(-90deg) translate(49px, -30px);
        transform: rotate(-90deg) translate(49px, -30px);
      }

      .pencil__rotate {
        -webkit-animation-name: pencilRotate;
        animation-name: pencilRotate;
      }

      .pencil__stroke {
        -webkit-animation-name: pencilStroke;
        animation-name: pencilStroke;
        -webkit-transform: translate(100px, 100px) rotate(-113deg);
        -ms-transform: translate(100px, 100px) rotate(-113deg);
        transform: translate(100px, 100px) rotate(-113deg);
      }

      /* Animations */
      @-webkit-keyframes pencilBody1 {
        from,
        to {
          stroke-dashoffset: 351.86;
          -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
        }

        50% {
          stroke-dashoffset: 150.8;
          /* 3/8 of diameter */
          -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
        }
      }
      @keyframes pencilBody1 {
        from,
        to {
          stroke-dashoffset: 351.86;
          -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
        }

        50% {
          stroke-dashoffset: 150.8;
          /* 3/8 of diameter */
          -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
        }
      }

      @-webkit-keyframes pencilBody2 {
        from,
        to {
          stroke-dashoffset: 406.84;
          -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
        }

        50% {
          stroke-dashoffset: 174.36;
          -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
        }
      }

      @keyframes pencilBody2 {
        from,
        to {
          stroke-dashoffset: 406.84;
          -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
        }

        50% {
          stroke-dashoffset: 174.36;
          -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
        }
      }

      @-webkit-keyframes pencilBody3 {
        from,
        to {
          stroke-dashoffset: 296.88;
          -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
        }

        50% {
          stroke-dashoffset: 127.23;
          -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
        }
      }

      @keyframes pencilBody3 {
        from,
        to {
          stroke-dashoffset: 296.88;
          -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
        }

        50% {
          stroke-dashoffset: 127.23;
          -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
        }
      }

      @-webkit-keyframes pencilEraser {
        from,
        to {
          -webkit-transform: rotate(-45deg) translate(49px, 0);
          transform: rotate(-45deg) translate(49px, 0);
        }

        50% {
          -webkit-transform: rotate(0deg) translate(49px, 0);
          transform: rotate(0deg) translate(49px, 0);
        }
      }

      @keyframes pencilEraser {
        from,
        to {
          -webkit-transform: rotate(-45deg) translate(49px, 0);
          transform: rotate(-45deg) translate(49px, 0);
        }

        50% {
          -webkit-transform: rotate(0deg) translate(49px, 0);
          transform: rotate(0deg) translate(49px, 0);
        }
      }

      @-webkit-keyframes pencilEraserSkew {
        from,
        32.5%,
        67.5%,
        to {
          -webkit-transform: skewX(0);
          transform: skewX(0);
        }

        35%,
        65% {
          -webkit-transform: skewX(-4deg);
          transform: skewX(-4deg);
        }

        37.5%,
        62.5% {
          -webkit-transform: skewX(8deg);
          transform: skewX(8deg);
        }

        40%,
        45%,
        50%,
        55%,
        60% {
          -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
        }

        42.5%,
        47.5%,
        52.5%,
        57.5% {
          -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
        }
      }

      @keyframes pencilEraserSkew {
        from,
        32.5%,
        67.5%,
        to {
          -webkit-transform: skewX(0);
          transform: skewX(0);
        }

        35%,
        65% {
          -webkit-transform: skewX(-4deg);
          transform: skewX(-4deg);
        }

        37.5%,
        62.5% {
          -webkit-transform: skewX(8deg);
          transform: skewX(8deg);
        }

        40%,
        45%,
        50%,
        55%,
        60% {
          -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
        }

        42.5%,
        47.5%,
        52.5%,
        57.5% {
          -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
        }
      }

      @-webkit-keyframes pencilPoint {
        from,
        to {
          -webkit-transform: rotate(-90deg) translate(49px, -30px);
          transform: rotate(-90deg) translate(49px, -30px);
        }

        50% {
          -webkit-transform: rotate(-225deg) translate(49px, -30px);
          transform: rotate(-225deg) translate(49px, -30px);
        }
      }

      @keyframes pencilPoint {
        from,
        to {
          -webkit-transform: rotate(-90deg) translate(49px, -30px);
          transform: rotate(-90deg) translate(49px, -30px);
        }

        50% {
          -webkit-transform: rotate(-225deg) translate(49px, -30px);
          transform: rotate(-225deg) translate(49px, -30px);
        }
      }

      @-webkit-keyframes pencilRotate {
        from {
          -webkit-transform: translate(100px, 100px) rotate(0);
          transform: translate(100px, 100px) rotate(0);
        }

        to {
          -webkit-transform: translate(100px, 100px) rotate(720deg);
          transform: translate(100px, 100px) rotate(720deg);
        }
      }

      @keyframes pencilRotate {
        from {
          -webkit-transform: translate(100px, 100px) rotate(0);
          transform: translate(100px, 100px) rotate(0);
        }

        to {
          -webkit-transform: translate(100px, 100px) rotate(720deg);
          transform: translate(100px, 100px) rotate(720deg);
        }
      }

      @-webkit-keyframes pencilStroke {
        from {
          stroke-dashoffset: 439.82;
          -webkit-transform: translate(100px, 100px) rotate(-113deg);
          transform: translate(100px, 100px) rotate(-113deg);
        }

        50% {
          stroke-dashoffset: 164.93;
          -webkit-transform: translate(100px, 100px) rotate(-113deg);
          transform: translate(100px, 100px) rotate(-113deg);
        }

        75%,
        to {
          stroke-dashoffset: 439.82;
          -webkit-transform: translate(100px, 100px) rotate(112deg);
          transform: translate(100px, 100px) rotate(112deg);
        }
      }

      @keyframes pencilStroke {
        from {
          stroke-dashoffset: 439.82;
          -webkit-transform: translate(100px, 100px) rotate(-113deg);
          transform: translate(100px, 100px) rotate(-113deg);
        }

        50% {
          stroke-dashoffset: 164.93;
          -webkit-transform: translate(100px, 100px) rotate(-113deg);
          transform: translate(100px, 100px) rotate(-113deg);
        }

        75%,
        to {
          stroke-dashoffset: 439.82;
          -webkit-transform: translate(100px, 100px) rotate(112deg);
          transform: translate(100px, 100px) rotate(112deg);
        }
      }
    </style>
  </head>
  <body>
    <svg
      xmlns="http://www.w3.org/2000/svg"
      height="200px"
      width="200px"
      viewBox="0 0 200 200"
      class="pencil"
    >
      <defs>
        <clipPath id="pencil-eraser">
          <rect height="30" width="30" ry="5" rx="5"></rect>
        </clipPath>
      </defs>
      <circle
        transform="rotate(-113,100,100)"
        stroke-linecap="round"
        stroke-dashoffset="439.82"
        stroke-dasharray="439.82 439.82"
        stroke-width="2"
        stroke="currentColor"
        fill="none"
        r="70"
        class="pencil__stroke"
      ></circle>
      <g transform="translate(100,100)" class="pencil__rotate">
        <g fill="none">
          <circle
            transform="rotate(-90)"
            stroke-dashoffset="402"
            stroke-dasharray="402.12 402.12"
            stroke-width="30"
            stroke="hsl(223,90%,50%)"
            r="64"
            class="pencil__body1"
          ></circle>
          <circle
            transform="rotate(-90)"
            stroke-dashoffset="465"
            stroke-dasharray="464.96 464.96"
            stroke-width="10"
            stroke="hsl(223,90%,60%)"
            r="74"
            class="pencil__body2"
          ></circle>
          <circle
            transform="rotate(-90)"
            stroke-dashoffset="339"
            stroke-dasharray="339.29 339.29"
            stroke-width="10"
            stroke="hsl(223,90%,40%)"
            r="54"
            class="pencil__body3"
          ></circle>
        </g>
        <g transform="rotate(-90) translate(49,0)" class="pencil__eraser">
          <g class="pencil__eraser-skew">
            <rect
              height="30"
              width="30"
              ry="5"
              rx="5"
              fill="hsl(223,90%,70%)"
            ></rect>
            <rect
              clip-path="url(#pencil-eraser)"
              height="30"
              width="5"
              fill="hsl(223,90%,60%)"
            ></rect>
            <rect height="20" width="30" fill="hsl(223,10%,90%)"></rect>
            <rect height="20" width="15" fill="hsl(223,10%,70%)"></rect>
            <rect height="20" width="5" fill="hsl(223,10%,80%)"></rect>
            <rect
              height="2"
              width="30"
              y="6"
              fill="hsla(223,10%,10%,0.2)"
            ></rect>
            <rect
              height="2"
              width="30"
              y="13"
              fill="hsla(223,10%,10%,0.2)"
            ></rect>
          </g>
        </g>
        <g transform="rotate(-90) translate(49,-30)" class="pencil__point">
          <polygon points="15 0,30 30,0 30" fill="hsl(33,90%,70%)"></polygon>
          <polygon points="15 0,6 30,0 30" fill="hsl(33,90%,50%)"></polygon>
          <polygon points="15 0,20 10,10 10" fill="hsl(223,10%,10%)"></polygon>
        </g>
      </g>
    </svg>
  </body>
</html>

📢 笑脸loading

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>笑脸loading</title>
    <style>
        body {
            align-items: center;
            display: flex;
            justify-content: center;
            height: 100vh;
            overflow: hidden;
            background-color: #000;
        }

        .gegga {
            width: 0;
        }

        .snurra {
            filter: url(#gegga);
        }

        .stopp1 {
            stop-color: #f700a8;
        }

        .stopp2 {
            stop-color: #ff8000;
        }

        .halvan {
            animation: Snurra1 10s infinite linear;
            stroke-dasharray: 180 800;
            fill: none;
            stroke: url(#gradient);
            stroke-width: 23;
            stroke-linecap: round;
        }

        .strecken {
            animation: Snurra1 3s infinite linear;
            stroke-dasharray: 26 54;
            fill: none;
            stroke: url(#gradient);
            stroke-width: 23;
            stroke-linecap: round;
        }

        .skugga {
            filter: blur(5px);
            opacity: 0.3;
            position: absolute;
            transform: translate(3px, 3px);
        }

        @keyframes Snurra1 {
            0% {
                stroke-dashoffset: 0;
            }

            100% {
                stroke-dashoffset: -403px;
            }
        }
    </style>
</head>

<body>
    <svg class="gegga">
        <defs>
            <filter id="gegga">
                <feGaussianBlur in="SourceGraphic" stdDeviation="7" result="blur" />
                <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 20 -10"
                    result="inreGegga" />
                <feComposite in="SourceGraphic" in2="inreGegga" operator="atop" />
            </filter>
        </defs>
    </svg>
    <svg class="snurra" width="200" height="200" viewBox="0 0 200 200">
        <defs>
            <linearGradient id="linjärGradient">
                <stop class="stopp1" offset="0" />
                <stop class="stopp2" offset="1" />
            </linearGradient>
            <linearGradient y2="160" x2="160" y1="40" x1="40" gradientUnits="userSpaceOnUse" id="gradient"
                xlink:href="#linjärGradient" />
        </defs>
        <path class="halvan"
            d="m 164,100 c 0,-35.346224 -28.65378,-64 -64,-64 -35.346224,0 -64,28.653776 -64,64 0,35.34622 28.653776,64 64,64 35.34622,0 64,-26.21502 64,-64 0,-37.784981 -26.92058,-64 -64,-64 -37.079421,0 -65.267479,26.922736 -64,64 1.267479,37.07726 26.703171,65.05317 64,64 37.29683,-1.05317 64,-64 64,-64" />
        <circle class="strecken" cx="100" cy="100" r="64" />
    </svg>
    <svg class="skugga" width="200" height="200" viewBox="0 0 200 200">
        <path class="halvan"
            d="m 164,100 c 0,-35.346224 -28.65378,-64 -64,-64 -35.346224,0 -64,28.653776 -64,64 0,35.34622 28.653776,64 64,64 35.34622,0 64,-26.21502 64,-64 0,-37.784981 -26.92058,-64 -64,-64 -37.079421,0 -65.267479,26.922736 -64,64 1.267479,37.07726 26.703171,65.05317 64,64 37.29683,-1.05317 64,-64 64,-64" />
        <circle class="strecken" cx="100" cy="100" r="64" />
    </svg>
</body>

</html>

🍭 圆盘loading

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>彩色之外——圆盘loading</title>
    <style>
        .container{
            width: 100%;
            height: 100vh;
            background-color:#212121;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .pl {
            filter: drop-shadow(0 0 0.5em rgba(0, 0, 0, 0.5));
            box-shadow: 2em 0 2em rgba(0, 0, 0, 0.2) inset, -2em 0 2em rgba(255, 255, 255, 0.1) inset;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transform: rotateX(30deg) rotateZ(45deg);
            width: 14em;
            height: 14em;
        }

        .pl,
        .pl__dot {
            border-radius: 50%;
        }

        .pl__dot {
            animation-name: shadow724;
            box-shadow: 0.1em 0.1em 0 0.1em black, 0.3em 0 0.3em rgba(0, 0, 0, 0.5);
            top: calc(50% - 0.75em);
            left: calc(50% - 0.75em);
            width: 1.5em;
            height: 1.5em;
        }

        .pl__dot,
        .pl__dot:before,
        .pl__dot:after {
            animation-duration: 2s;
            animation-iteration-count: infinite;
            position: absolute;
        }

        .pl__dot:before,
        .pl__dot:after {
            content: "";
            display: block;
            left: 0;
            width: inherit;
            transition: background-color var(--trans-dur);
        }

        .pl__dot:before {
            animation-name: pushInOut1724;
            background-color: var(--bg);
            border-radius: inherit;
            box-shadow: 0.05em 0 0.1em rgba(255, 255, 255, 0.2) inset;
            height: inherit;
            z-index: 1;
        }

        .pl__dot:after {
            animation-name: pushInOut2724;
            background-color: var(--primary1);
            border-radius: 0.75em;
            box-shadow: 0.1em 0.3em 0.2em rgba(255, 255, 255, 0.4) inset, 0 -0.4em 0.2em #2e3138 inset, 0 -1em 0.25em rgba(0, 0, 0, 0.3) inset;
            bottom: 0;
            clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
            height: 3em;
            transform: rotate(-45deg);
            transform-origin: 50% 2.25em;
        }

        .pl__dot:nth-child(1) {
            transform: rotate(0deg) translateX(5em) rotate(0deg);
            z-index: 5;
        }

        .pl__dot:nth-child(1),
        .pl__dot:nth-child(1):before,
        .pl__dot:nth-child(1):after {
            animation-delay: 0s;
        }

        .pl__dot:nth-child(2) {
            transform: rotate(-30deg) translateX(5em) rotate(30deg);
            z-index: 4;
        }

        .pl__dot:nth-child(2),
        .pl__dot:nth-child(2):before,
        .pl__dot:nth-child(2):after {
            animation-delay: -0.1666666667s;
        }

        .pl__dot:nth-child(3) {
            transform: rotate(-60deg) translateX(5em) rotate(60deg);
            z-index: 3;
        }

        .pl__dot:nth-child(3),
        .pl__dot:nth-child(3):before,
        .pl__dot:nth-child(3):after {
            animation-delay: -0.3333333333s;
        }

        .pl__dot:nth-child(4) {
            transform: rotate(-90deg) translateX(5em) rotate(90deg);
            z-index: 2;
        }

        .pl__dot:nth-child(4),
        .pl__dot:nth-child(4):before,
        .pl__dot:nth-child(4):after {
            animation-delay: -0.5s;
        }

        .pl__dot:nth-child(5) {
            transform: rotate(-120deg) translateX(5em) rotate(120deg);
            z-index: 1;
        }

        .pl__dot:nth-child(5),
        .pl__dot:nth-child(5):before,
        .pl__dot:nth-child(5):after {
            animation-delay: -0.6666666667s;
        }

        .pl__dot:nth-child(6) {
            transform: rotate(-150deg) translateX(5em) rotate(150deg);
            z-index: 1;
        }

        .pl__dot:nth-child(6),
        .pl__dot:nth-child(6):before,
        .pl__dot:nth-child(6):after {
            animation-delay: -0.8333333333s;
        }

        .pl__dot:nth-child(7) {
            transform: rotate(-180deg) translateX(5em) rotate(180deg);
            z-index: 2;
        }

        .pl__dot:nth-child(7),
        .pl__dot:nth-child(7):before,
        .pl__dot:nth-child(7):after {
            animation-delay: -1s;
        }

        .pl__dot:nth-child(8) {
            transform: rotate(-210deg) translateX(5em) rotate(210deg);
            z-index: 3;
        }

        .pl__dot:nth-child(8),
        .pl__dot:nth-child(8):before,
        .pl__dot:nth-child(8):after {
            animation-delay: -1.1666666667s;
        }

        .pl__dot:nth-child(9) {
            transform: rotate(-240deg) translateX(5em) rotate(240deg);
            z-index: 4;
        }

        .pl__dot:nth-child(9),
        .pl__dot:nth-child(9):before,
        .pl__dot:nth-child(9):after {
            animation-delay: -1.3333333333s;
        }

        .pl__dot:nth-child(10) {
            transform: rotate(-270deg) translateX(5em) rotate(270deg);
            z-index: 5;
        }

        .pl__dot:nth-child(10),
        .pl__dot:nth-child(10):before,
        .pl__dot:nth-child(10):after {
            animation-delay: -1.5s;
        }

        .pl__dot:nth-child(11) {
            transform: rotate(-300deg) translateX(5em) rotate(300deg);
            z-index: 6;
        }

        .pl__dot:nth-child(11),
        .pl__dot:nth-child(11):before,
        .pl__dot:nth-child(11):after {
            animation-delay: -1.6666666667s;
        }

        .pl__dot:nth-child(12) {
            transform: rotate(-330deg) translateX(5em) rotate(330deg);
            z-index: 6;
        }

        .pl__dot:nth-child(12),
        .pl__dot:nth-child(12):before,
        .pl__dot:nth-child(12):after {
            animation-delay: -1.8333333333s;
        }

        .pl__text {
            color: #fff;
            font-size: 0.75em;
            max-width: 5rem;
            position: relative;
            text-shadow: 0 0 0.1em var(--fg-t);
            transform: rotateZ(-45deg);
        }

        /* Animations */
        @keyframes shadow724 {
            from {
                animation-timing-function: ease-in;
                box-shadow: 0.1em 0.1em 0 0.1em black, 0.3em 0 0.3em rgba(0, 0, 0, 0.3);
            }

            25% {
                animation-timing-function: ease-out;
                box-shadow: 0.1em 0.1em 0 0.1em black, 0.8em 0 0.8em rgba(0, 0, 0, 0.5);
            }

            50%,
            to {
                box-shadow: 0.1em 0.1em 0 0.1em black, 0.3em 0 0.3em rgba(0, 0, 0, 0.3);
            }
        }

        @keyframes pushInOut1724 {
            from {
                animation-timing-function: ease-in;
                background-color: var(--bg);
                transform: translate(0, 0);
            }

            25% {
                animation-timing-function: ease-out;
                background-color: var(--primary2);
                transform: translate(-71%, -71%);
            }

            50%,
            to {
                background-color: var(--bg);
                transform: translate(0, 0);
            }
        }

        @keyframes pushInOut2724 {
            from {
                animation-timing-function: ease-in;
                background-color: var(--bg);
                clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
            }

            25% {
                animation-timing-function: ease-out;
                background-color: var(--primary1);
                clip-path: polygon(0 25%, 100% 25%, 100% 100%, 0 100%);
            }

            50%,
            to {
                background-color: var(--bg);
                clip-path: polygon(0 75%, 100% 75%, 100% 100%, 0 100%);
            }
        }
    </style>
</head>

<body>
    <div class="container">
        <div class="pl">
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__dot"></div>
            <div class="pl__text">Loading…</div>
        </div>
    </div>
</body>

</html>

⚡ 谢谢观看

css动画 —— 把你喜欢css动画嵌入到浏览器中_彩色之外的博客-CSDN博客常用酷炫动画999+合集,代码直接复制可用,总用你想找的,快来抱走吧,三连,停!听鹅说,下次一定、下次一定……https://blog.csdn.net/m0_57904695/article/details/127846345?ops_request_misc=&request_id=6b6f8938b8ae4f7486879ca4a2fd3393&biz_id=&utm_medium=distribute.pc_search_result.none-task-blog-2~blog~koosearch~default-3-127846345-null-null.268%5Ev1%5Econtrol&utm_term=css&spm=1018.2226.3001.4450

7730e2bd39d64179909767e1967da702.jpeg

 _______________________________  期待再见  _______________________________ 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/634461.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

20道嵌入式经典面试题(附答案)

1.嵌入式系统中经常要用到无限循环&#xff0c;如何用C编写死循环 答&#xff1a;while(1){} 或者 for(;;) 2.程序的局部变量存在于哪里&#xff0c;全局变量存在于哪里&#xff0c;动态申请数据存在于哪里。 答&#xff1a;程序的局部变量存在于栈区&#xff1b;全局变量存在…

【Linux】浅谈文件原理与操作

目录 问题引入 浅谈文件原理 文件操作 文件的打开与关闭 open close write与read 再谈C库文件操作 问题引入 &#x1f338;以前我们学过C语言的文件操作&#xff0c;而不同语言的文件操作都是不一样的&#xff0c;我们该如何理解这一现象&#xff0c;能不能用一种统一…

有关 string 类的练习(下)

目录 一、反转字符串 II 二、反转字符串中的单词 III 三、找出字符串中第一个只出现一次的字符 四、字符串相乘 五、把字符串转换成整数 一、反转字符串 II 给定一个字符串 s 和一个整数 k&#xff0c;从字符串开头算起&#xff0c;每计数至 2k 个字符&#xff0c;就反转…

Spring,注解开发

Spring是一个轻量级的控制反转&#xff08;IOC&#xff09;和面向切面编程&#xff08;AOP&#xff09;的框架 1、组成 spring七大模块详解 2、IOC理论推导 传统的开发 (pojo层、DAO层和业务层&#xff09; &#xff08;1&#xff09;UserDao &#xff08;2) UserDaoImpl (3)…

天狼星-大熊座 Ursa Major SIRIUS

大熊座 Ursa Major SIRIUS 键盘说明 客制化键盘&#xff1a; 大熊座 Ursa Major SIRIUS 配列&#xff1a; 75 键帽&#xff1a;KCA-HelloWorld-Black 双模&#xff1a; 蓝牙-分裂方案 驱动配置&#xff1a;Link Lab 驱动设置软件 键盘操作 键盘说明参考&#xff1a;键位配…

利用WinDbg查看堆栈中方法入参的值4(C#)

由于作者水平有限&#xff0c;如有写得不对的地方&#xff0c;请指正。 使用WinDbg的过程中&#xff0c;坑特别的多&#xff0c;对版本要求比较严格&#xff0c;如&#xff1a; 1 32位应用程序导出的Dump文件要用32位的WinDbg打开&#xff0c;想要没有那么多的问题&#xf…

海底光缆位置探测技术的应用概述

1. 概述 海底光缆运行在地质环境复杂的海洋环境中&#xff0c;地震、海床塌陷、滑坡、洋流变化、海洋生物及船只抛锚都有可能造成光缆断裂、破损&#xff0c;影响光缆的安全运行。海底光缆一旦遭受损坏&#xff0c;其造成的经济损失无法估量。因此在海洋开发工程实施前&#xf…

Web转化为APP——YonBIP(APICloud迁移版)

目录 平台注册 平台使用 设计封面&#xff08;端设置&#xff09; APP证书 代码上传 移动打包 运营管理和移动插件 众所周知&#xff0c;APP开发是一件非常麻烦的事&#xff0c;很多擅长Web开发的人未必擅长APP开发。那么作为一个Web开发者&#xff0c;可不可以有很方便…

基于prefix tuning + Bert的标题党分类器

文章目录 背景一、Prefix-Tuning介绍二、分类三、效果四、参阅 背景 近期, CSDN博客推荐流的标题党博客又多了起来, 先前的基于TextCNN版本的分类模型在语义理解上能力有限, 于是, 便使用的更大的模型来优化, 最终准确率达到了93.7%, 还不错吧. 一、Prefix-Tuning介绍 传统的…

Redis之Redisson原理详解

文章目录 1 Redisson1.1 简介1.2 与其他客户端比较1.3 操作使用1.3.1 pom.xml1.3.2 配置1.3.3 启用分布式锁 1.4 大致操作原理1.5 RLock1.5.1 RLock如何加锁1.5.2 解锁消息1.5.3 锁续约1.5.4 流程概括 1.6 公平锁1.6.1 java中公平锁1.6.2 RedissonFairLock1.6.3 公平锁加锁步骤…

50 Projects 50 Days - Form Input Wave 学习记录

项目地址 Form Input Wave 展示效果 Form Input Wave 实现思路 简单的登陆界面结构&#xff0c;只是在输入框聚焦时标题提示文字会有一个字母逐渐向上跳动的动画效果&#xff0c;这需要针对每个字符单独设置变换的延时&#xff0c;可以考虑在JavaScript中处理这部分逻辑&am…

2017~2018学年《信息安全》考试试题(A1卷)

北京信息科技大学 2017 ~2018 学年第二学期《信息安全》考试试题 (A 卷) 课程所在学院:计算机学院 适用专业班级:计科 1504-6、重修 考试形式:闭卷 一、单选题(本题满分 20 分&#xff0c;共含 10 道小题&#xff0c;每小题 2 分) 网络安全是指网络系统的硬件、软件及( C )的…

【头歌-Python】Python第九章作业(初级)第5关

第5关&#xff1a;绘制程序设计语言饼图 任务描述 列表labels和sizes中的数据分别是目前主流程序设计语言及其热度数据&#xff08;百分比&#xff09;&#xff0c;请根据这些数据绘制饼图&#xff0c;并将Python程序设计语言所在区域突出0.1显示。 labels [C语言, Python…

Java ~ Reference ~ ReferenceQueue【总结】

前言 文章 相关系列&#xff1a;《Java ~ Reference【目录】》&#xff08;持续更新&#xff09;相关系列&#xff1a;《Java ~ Reference ~ ReferenceQueue【源码】》&#xff08;学习过程/多有漏误/仅作参考/不再更新&#xff09;相关系列&#xff1a;《Java ~ Reference ~ …

一篇就能学懂的散列表,让哈希表数据结构大放光彩

目录 1.散列表的基本概念 2.散列表的查找 3.散列函数的构造方法 1.直接定址法 2.除留余数法 4.散列表解决冲突的方法 1.开放定址法 2.链地址法 1.散列表的基本概念 基本思想&#xff1a;记录的存储位置与关键字之间存在的对应关系 对应关系——hash函数 Loc(i) H(k…

关于外包被开要怎么维护自己的权益

我一直以为外包被开都是没有任何赔偿的&#xff0c;之前网上对于外包的消息都是说&#xff0c;没有任何赔偿或者是怕麻烦然后就干脆放弃了的各种评论。。。但是最近我在问到一个朋友的时候&#xff0c;他很好的维护了自己的权益。最后获得了N1 保留证据 当被告知外包需要你离场…

牛客网语法篇刷题(C语言) — 运算

作者主页&#xff1a;paper jie的博客_CSDN博客-C语言,算法详解领域博主 本文作者&#xff1a;大家好&#xff0c;我是paper jie&#xff0c;感谢你阅读本文&#xff0c;欢迎一建三连哦。 本文录入于《C语言-语法篇》专栏&#xff0c;本专栏是针对于大学生&#xff0c;编程小白…

单链表OJ题:LeetCode--138.复制带随即指针的链表

朋友们、伙计们&#xff0c;我们又见面了&#xff0c;本期来给大家解读一下LeetCode中第138道单链表OJ题&#xff0c;如果看完之后对你有一定的启发&#xff0c;那么请留下你的三连&#xff0c;祝大家心想事成&#xff01; 数据结构与算法专栏&#xff1a;数据结构与算法 个 人…

python使用Faker库进行生成模拟mock数据(基本使用+五个小案例)

使用faker进行生成模拟(mock))数据 文章目录 使用faker进行生成模拟(mock))数据一、Faker库安装二、Faker库基本介绍三、案例1&#xff1a;Faker库生成核酸数据四、案例2&#xff1a;生成不重复的人名和地名五、案例3&#xff1a;生成有时间期限的低保数据六、案例4&#xff1a…

01-Vue 项目环境搭建和创建准备工作

一. 学习目标 掌握 Vue 项目创建的依赖环境掌握 Vue 项目创建过程 二. 学习内容 掌握搭建 Vue 项目准备环境掌握 Vue 项目创建过程了解 Vue 项目各子目录 三. 学习过程 1. 准备工作 &#xff08;1&#xff09;安装Node.js 打开node.js官网&#xff1a;Node.js &#xff0…