css实现鲸鱼吐气动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现鲸鱼吐气动画效果代码

代码标签: css 鲸鱼 吐气 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">
  

  
  
  
<style>
body {
  height: 100vh;
  width: 100vw;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: linear-gradient(#99ccff, #eee);
  box-shadow:  7px 7px 19px #d3d3d3,
    -7px -7px 19px #ffffff;
  height: 62vmin;
  width: 70vmin;
}


.body::after, .tail, .hand, .eye, .blush, .water, .puff1 .puff2, .puff3 {
  animation: waves 3s infinite forwards;
}

.body {
  position: relative;
}

.body::after {
  position: absolute;
  content: '';  
  backg.........完整代码请登录后点击上方下载按钮下载查看

网友评论0