CSS 下载进度条-LMLPHP

    <template>
    <view  class='btn'>下载中</view>
    </template>

    <script>

    </script>

    <style>
    /* 设置整个页面的样式 */
    body {
      width: 100vw;  /* 页面宽度为视口宽度 */
      background: #000000;  /* 背景颜色为白色 */
      display: flex;  /* 使用 flex 布局 */
      justify-content: center;  /* 水平居中 */
      align-items: center;  /* 垂直居中 */
      margin-top: 300px;  /* 顶部外边距为 300px */
    }
    /* 按钮的样式 */
    .btn {
      background: transparent;  /* 背景透明 */
      width: 200px;  /* 宽度为 200px */
      position: relative;  /* 定位为相对定位 */
      padding: 15px;  /* 内边距为 15px */
      color: #1ECD97;  /* 文字颜色为 #1ECD97 */
      cursor: pointer;  /* 鼠标悬停样式为手型 */
      text-align: center;  /* 文字居中 */
      letter-spacing: 3px;  /* 字母间距为 3px */
      transition: all 500ms cubic-bezier(0.6, -0.28, 0.7
01-13 18:00