微信小程序纯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);
  }
}

效果

相关推荐
头发还在的女程序员2 天前
家政SaaS平台开源:从供应商入驻到分账结算,源码如何设计?
小程序·开源
hjt_未来可期2 天前
修改浏览器滚动条
css
焦糖玛奇朵婷2 天前
解锁扭蛋机小程序的五大优势
java·大数据·服务器·前端·小程序
轮子大叔2 天前
CSS基础入门
前端·css
ShineWinsu2 天前
CSS 技术文章
前端·css
之歆2 天前
Day02_HTML 标签详解:从基础到实践的完整指南
css·html·div
军军君012 天前
数字孪生监控大屏实战模板:交通云实时数据监控平台
前端·javascript·css·vue.js·typescript·前端框架·echarts
里欧跑得慢2 天前
12. CSS滤镜效果详解:为页面注入艺术灵魂
前端·css·flutter·web
里欧跑得慢2 天前
CSS 级联层:控制样式优先级的新方式
前端·css·flutter·web
~无忧花开~2 天前
CSS全攻略:从基础到实战技巧
开发语言·前端·css·学习·css3