CSS 下载进度条

发布时间:2024年01月13日

    <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
文章来源:https://blog.csdn.net/weixin_54226053/article/details/135572803
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。