• Vue3初始化加载loading


    在这里插入图片描述

    cv微调样式即可,原理自行研究。

    DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="UTF-8" />
        <link rel="icon" href="/favicon.ico" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>Vite Apptitle>
      head>
      <body>
        <div id="app">
          <style>
            html,
            body,
            #app {
              width: 100%;
              height: 100%;
              display: flex;
              position: relative;
              justify-content: center;
              align-items: center;
              overflow: hidden;
            }
    
            .loader,
            .loader:before,
            .loader:after {
              border-radius: 50%;
              width: 2.5em;
              height: 2.5em;
              -webkit-animation-fill-mode: both;
              animation-fill-mode: both;
              -webkit-animation: loadAnimation 1.8s infinite ease-in-out;
              animation: loadAnimation 1.8s infinite ease-in-out;
            }
    
            .loader {
              color: #406eeb;
              font-size: 10px;
              margin: 80px auto;
              position: relative;
              text-indent: -9999em;
              -webkit-transform: translateZ(0);
              -ms-transform: translateZ(0);
              transform: translateZ(0);
              -webkit-animation-delay: -0.16s;
              animation-delay: -0.16s;
              top: 0;
              transform: translate(-50%, 0);
            }
    
            .loader:before,
            .loader:after {
              content: '';
              position: absolute;
              top: 0;
            }
    
            .loader:before {
              left: -3.5em;
              -webkit-animation-delay: -0.32s;
              animation-delay: -0.32s;
            }
    
            .loader:after {
              left: 3.5em;
            }
    
            @-webkit-keyframes loadAnimation {
              0%,
              80%,
              100% {
                box-shadow: 0 2.5em 0 -1.3em;
              }
    
              40% {
                box-shadow: 0 2.5em 0 0;
              }
            }
    
            @keyframes loadAnimation {
              0%,
              80%,
              100% {
                box-shadow: 0 2.5em 0 -1.3em;
              }
    
              40% {
                box-shadow: 0 2.5em 0 0;
              }
            }
          style>
          <div class="loader">div>
        div>
        <script type="module" src="/src/main.ts">script>
      body>
    html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
  • 相关阅读:
    JavaScript进阶-函数(参数,箭头函数)
    【Proteus仿真】【Arduino单片机】HC-SR04超声波测距
    HCIA回顾笔记
    PAT 1035 Password
    软考中级软件设计师--3.知识产权
    Opencv算术操作
    Java快问快答
    云原生 | kubernetes - Service
    Linux中的MFS分布式文件系统
    如何将Python程序打包并保护源代码
  • 原文地址:https://blog.csdn.net/RequesToGod/article/details/126380823