css动画制作loading

<template>

  <div class="box">

    <div class="outBox">

      <div class="middleBox">

        <div class="inBox">loading...</div>

      </div>

    </div>

  </div>

</template>

<style scoped>

.box {

  position: fixed;

  top: 150px;

  left: 35px;

}

.outBox {

  width: 300px;

  height: 300px;

  border: 10px solid rgb(134, 190, 216);

  border-top: white;

  border-left: white;

  border-radius: 50%;

  position: relative;

  animation: mymove linear 3s infinite;

  -webkit-animation: mymove linear 3s infinite;

}

.middleBox {

  width: 200px;

  height: 200px;

  border: 10px solid rgb(172, 198, 211);

  border-bottom: white;

  border-right: white;

  border-radius: 50%;

  position: absolute;

  top: 50%;

  left: 50%;

  margin-top: -100px;

  margin-left: -100px;

  animation: mymove2 linear 3s infinite;

  -webkit-animation: mymove2 linear 3s infinite;

}

.inBox {

  width: 160px;

  height: 160px;

  background-color: rgb(209, 220, 225);

  border-radius: 50%;

  position: absolute;

  top: 50%;

  left: 50%;

  margin-top: -80px;

  margin-left: -80px;

  animation: move linear 3s infinite;

  -webkit-animation: move linear 3s infinite;

  text-align: center;

  line-height: 160px;

  font-size: 25px;

  font-weight: 700;

  color: white;

}

@keyframes mymove {

  form {

    transform: rotateZ(0deg);

  }

  to {

    transform: rotateZ(360deg);

  }

}

@-webkit-keyframes mymove {

  form {

    -webkit-transform: rotateZ(0deg);

  }

  to {

    -webkit-transform: rotateZ(360deg);

  }

}

@keyframes mymove2 {

  form {

    transform: rotateZ(0deg);

  }

  to {

    transform: rotateZ(-720deg);

  }

}

@-webkit-keyframes mymove2 {

  form {

    -webkit-transform: rotateZ(0deg);

  }

  to {

    -webkit-transform: rotateZ(-720deg);

  }

}

@keyframes move {

  form {

    transform: rotateZ(0deg);

  }

  to {

    transform: rotateZ(360deg);

  }

}

@-webkit-keyframes move {

  form {

    -webkit-transform: rotateZ(0deg);

  }

  to {

    -webkit-transform: rotateZ(360deg);

  }

}

</style>

呈现效果如下:

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
CSS加载动画,也称为loading动画,是通过CSS代码实现的一种在页面加载过程中显示的动态效果。可以通过设置div的样式属性和动画效果来实现。例如,可以设置一个圆形的div,并通过border属性设置边框的宽度和颜色,再通过animation属性设置旋转动画,使div在页面加载过程中旋转起来。以下是一个示例代码: ```html <!DOCTYPE html> <html> <head> <title>CSS实现加载中loading动画效果</title> <style type="text/css"> html, body { width: 100%; height: 100%; margin: 0; padding: 0; display: flex; flex-flow: column; align-items: center; justify-content: center; } .loading { width: 100px; height: 100px; border-radius: 50%; border: 15px solid #BEBEBE; border-left: 15px solid orange; animation: loading 1s linear infinite; } @keyframes loading { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } </style> </head> <body> <div class="loading"></div> </body> </html> ``` 这段代码中,通过设置div的样式属性和动画效果,实现了一个圆形的loading动画。div的样式属性包括宽度、高度、边框半径等,通过border属性设置边框的宽度和颜色,再通过animation属性设置旋转动画。通过设置from和to关键帧,控制div在页面加载过程中旋转的角度,从而实现loading动画效果。 #### 引用[.reference_title] - *1* [css实现加载中loading动画效果](https://blog.csdn.net/popstarqq/article/details/120999180)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* *3* [【CSS加载动画特效】28种纯CSS实现的加载loading动态特效(附源码)](https://blog.csdn.net/hdp134793/article/details/131655277)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值