css实现可爱兔子耳朵动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现可爱兔子耳朵动画效果代码

代码标签: css 可爱 兔子 耳朵 动画

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


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

<head>

  <meta charset="UTF-8">
  


  
  
<style>
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  background: #E2B29F;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rabbit {
  position: relative;
}
.rabbit .rabbit__body {
  width: 4em;
  height: 5.6em;
  background: #F4F4F4;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
  transform: rotate(-40deg);
  box-shadow: inset -2.3em -2.7em 0 0 #D2DAEE;
}
.rabbit .rabbit__head {
  position: absolute;
  width: 4em;
  height: 4.6em;
  top: -2.5em;
  left: -2em;
  background: #e1e6f4;
  border-radius: 50% 50% 50% 50%/65% 60% 40% 35%;
  transform: rotate(-120deg);
  overflow: hidden;
}
.rabbit .rabbit__head:before {
  content: "";
  position: absolute;
  width: 0.65em;
  height: 0.5em;
  top: -0.1em;
  left: 1.8em;
  background: #F97996;
  bo.........完整代码请登录后点击上方下载按钮下载查看

网友评论0