css动画制作loading

这段CSS3代码创建了一个旋转加载效果,包括三个不同旋转动画的盒子元素。外层盒子旋转360度,中间盒子逆时针旋转720度,内层盒子则正向旋转360度,形成独特的视觉体验。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

<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>

呈现效果如下:

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值