微信小程序纯css实现波浪效果

  • wxml
html 复制代码
<view class="container">
  <view class="head">
    
  </view>
</view>
  • wxss
html 复制代码
.container {
  width: 100vw;
  height: 100vh;
}

.head {
  position: relative;
  height: 400rpx;
  background-color: rgb(118, 218, 255);
  overflow: hidden;
}

.head::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1000rpx;
  height: 1000rpx;
  background-color: #fff;
  animation-name: rotate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  bottom: 40rpx;
  opacity: .5;
  border-radius: 47%;
  animation-duration: 10s;
}

.head::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1000rpx;
  height: 1000rpx;
  background-color: #fff;
  animation-name: rotate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  bottom: 100rpx;
  border-radius: 45%;
  animation-duration: 10s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, 0) rotateZ(0deg);
  }

  50% {
    transform: translate(-50%, -2%) rotateZ(180deg);
  }

  100% {
    transform: translate(-50%, 0%) rotateZ(360deg);
  }
}

效果

相关推荐
吴声子夜歌21 分钟前
小程序——组件一
小程序
object not found3 小时前
微信小程序审核机制解析(2026 实践向总结)
微信小程序·小程序
henry1010103 小时前
DeepSeek生成的HTML5小游戏 -- 投篮小能手
前端·javascript·css·游戏·html5
吴声子夜歌3 小时前
小程序——组件二
小程序
lzhdim4 小时前
CSS实现毛玻璃模糊效果
前端·css
Never_Satisfied4 小时前
在HTML & CSS中,CSS选中第二个指定类型的子元素的方法
前端·css·html
Never_Satisfied4 小时前
在HTML & CSS中,图片嵌入文字方法
前端·css·html
NEXT061 天前
BFC布局
前端·css·面试
岱宗夫up1 天前
【前端基础】HTML + CSS + JavaScript 进阶(一)
开发语言·前端·javascript·css·html
岱宗夫up1 天前
【前端基础】HTML + CSS + JavaScript 基础(三)
开发语言·前端·javascript·css·html