css布局实现猫头鹰效果

代码语言:html

所属分类:布局界面

代码描述:css布局实现猫头鹰效果

代码标签: 猫头鹰 效果

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


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

<style>
body{
  margin:0;
  display:flex;
  align-items:center;
  justify-content: center;
  height: 100vh;
  background-color:#f2c391;
 }
:root{
    --nose-and-pow-color:#F37920;
    --light-brown:#A69586;
    --medium-brown:#9D8775;
    --dark-brown:#3B2314;
  }
  .owl,.ear-l,.ear-r,.eye-l,.eye-r,.eye-r::before,.eye-l::before,.eye-r::after,.eye-l::after,.nose,.nose::after, .nose::before,.body-1,.body-2,.body-3,.paw-l,.paw-r,.paw-l::before,.paw-r::before,.paw-l::after,.paw-r::after{
   position: absolute;
  }
  .eye-r::before,.eye-l::before,.eye-r::after,.eye-l::after,.nose::after, .nose::before,.paw-l::before,.paw-r::before,.paw-l::after,.paw-r::after{
    content: " ";
  }
  .nose,.nose::after,.nose::before,.paw-l,.paw-r,.paw-l::before,.paw-r::before,.paw-l::after,.paw-r::after{
  background-color: var(--nose-and-pow-color);
 }
  .eye-l,.eye-r,.head,.body-2{
    background-color: var(--medium-brown);
  }
  .ear-l,.ear-r{
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 35px solid var(--medium-brown);
    top: 0px;
  }
  .ear-l{
    transform: rotate(-36deg);
    left: -3px;
  }
  .ear-r{
    transform: rotate(36deg);
    right: -3px;
  }
  .head{
    position: relative;
    width: 180px;
    height: 160px;
    border-radius: 50%;
    top: -58px;
  }
  .eye-l,.eye-r{
    width: 42px;
    height: 42px;
    background-color: #3B2314;
    top: 57px;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #603813, 0 0 0 16px var(--dark-brown), 0 0 0 21px #F4F4F4;
  }
  .eye-r::before,.eye-l::before{
    width: 13px;
    height: 13px;
    top: 1px;
    left: 27px;
    background-color: #FBFBFB;
    border-radius: 50%;
}
.eye-r::after,.eye-l::after{
    width: 19px;
    height: 19px;
    top: 24px;
    left: -1px;
    background-color: #FBFBFB;
    border-radius: 50%;
}
  .eye-.........完整代码请登录后点击上方下载按钮下载查看

网友评论0