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

效果

相关推荐
xiangxiongfly9157 小时前
CSS link标签
前端·css
十年磨一剑~8 小时前
html+js开发一个测试工具
javascript·css·html
爱吃巧克力的程序媛8 小时前
将qt界面中加载css或者qss样式
开发语言·css·qt
我很苦涩的9 小时前
使用微信小程序实现多格验证码效果
微信小程序·小程序
阿里花盘9 小时前
花店微信小程序怎么做,创建一个小程序需要多少钱
微信小程序·小程序
2501_916008899 小时前
没有源码如何加密 IPA 实战流程与多工具组合落地指南
android·ios·小程序·https·uni-app·iphone·webview
LXA080911 小时前
UniApp 小程序中使用地图组件
小程序·uni-app·notepad++
bug总结12 小时前
更新原生小程序封装(新增缓存订阅)完美解决
前端·缓存·小程序
拉不动的猪14 小时前
CSS 像素≠物理像素:0.5px 效果的核心密码是什么?
前端·css·面试