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

效果

相关推荐
爷可是个天才8 小时前
uniapp小程序IOS端,uni.createInnerAudioContext()无声音
小程序·uni-app
白臻13 小时前
小程序 npm 支持
前端·小程序·npm
guanpinkeji15 小时前
剧本杀小程序:助力商家发展,提高游戏体验
游戏·小程序·游戏开发·小程序开发·剧本杀·剧本杀小程序
tomla15 小时前
使用clip-path polygon()画一个多边形
css
生活、追梦者16 小时前
html+css+JavaScript 实现两个输入框的反转动画
javascript·css·html
酷爱码16 小时前
新闻电影资讯类小程序模板源码
小程序
Conan_Ritchie17 小时前
微信小程序简历Demo
微信小程序·小程序
嫣嫣细语17 小时前
css实现鼠标禁用(鼠标滑过显示红色禁止符号)
前端·css
安冬的码畜日常19 小时前
【CSS in Depth 2精译】2.5 无单位的数值与行高
前端·css
ilisi_19 小时前
导航栏样式,盒子模型
前端·javascript·css