css模拟小鸡跳舞动画效果

代码语言:html

所属分类:动画

代码描述:css模拟小鸡跳舞动画效果

代码标签: 跳舞 动画 效果

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

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  overflow:hidden;
  animation: colorChange 3.6s infinite linear both;
}

@keyframes colorChange{
  0%{
  background-color: #ddf08b;
  }
  20%{
  background-color: #edb272;
  }
  40%{
   background-color: #ed8272;
  }
  60%{
   background-color: #e0a6d2;
  }
  80%{
  background-color: #a2aceb;
  }
  100%{
  background-color: #a2ebcb;
  }
}

.container{
  width:100vw;
  height:100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chick{
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.face{
  width:40vmin;
  height:35vmin;
  border-radius:50%.........完整代码请登录后点击上方下载按钮下载查看

网友评论0