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

效果

相关推荐
Mh7 小时前
鼠标跟随倾斜动效
前端·css·vue.js
vipbic11 小时前
独立开发复盘:我用 Uni-app + Strapi v5 肝了一个“会上瘾”的打卡小程序
前端·微信小程序
CyrusCJA15 小时前
毛玻璃效果
前端·css·css3
huangql52018 小时前
CSS布局(五):Flex——让布局更灵活
前端·css
lemon_yyds19 小时前
Element UI 实践踩坑- date-picker 组件 定制化type="daterange"
前端·css
CDwenhuohuo19 小时前
小程序全局使用api
javascript·vue.js·小程序
布局呆星21 小时前
Vue3 笔记:过渡动画与自定义指令
javascript·css·vue.js·python·es6·html5
智慧景区与市集主理人1 天前
市集分账混乱?巨有科技智慧小程序实现统一收款、自动分账
大数据·科技·小程序
qq4356947011 天前
JavaWeb03
前端·css·html
front-end-zzq1 天前
瘦了么打卡微信小程序
小程序