源码
<section>
<div id="belly"></div>
<div id="head"></div>
<div id="eye"></div>
<div id="mouth"></div>
<div id="wing"></div>
<div id="feather"></div>
</section>
<style type="text/css">
* {
border: 0;
margin: 0;
padding: 0;
outline: 0
}
html {
background-color: white;
width: 100%;
height: 100%
}
body {
width: 100%;
margin: 20px 0;
text-align: center
}
section {
position: relative;
width: 157px;
margin: 0 auto
}
section #belly {
height: 100px;
width: 50px;
background-color: #ea462b;
border-radius: 100px 0 0 100px;
transform: rotate(-120deg);
position: absolute;
left: 30px;
box-shadow: -4px -1px 1px 0 #e8e8e8
}
section #head {
width: 50px;
height: 50px;
background-color: #151513;
border-radius: 50%;
position: absolute;
left: 50px;
z-index: 2
}
section #eye {
width: 10px;
height: 10px;
background-color: #fff;
position: absolute;
top: 10px;
left: 75px;
border-radius: 50%;
z-index: 5
}
section #eye:after {
content: '';
display: block;
width: 4px;
height: 4px;
border-radius: 50%;
background-color: #000;
position: absolute;
top: 3px;
left: 3px
}
section #mouth {
width: 0;
height: 0;
display: block;
border-top: 15px solid #f4ac40;
border-left: 35px solid transparent;
border-right: 35px solid transparent;
position: absolute;
top: 10px;
left: 45px;
z-index: 1;
transform: rotate(180deg)
}
section #mouth:after {
content: '';
width: 0;
height: 0;
display: block;
border-top: 5px solid #ec7020;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
position: absolute;
top: -20px;
left: -25px;
transform: rotate(180deg)
}
section #wing {
width: 40px;
height: 80px;
background-color: #40403e;
border-radius: 80px 0 0 80px;
transform: rotate(-120deg);
position: absolute;
top: 0;
left: 20px;
z-index: 3
}
section #feather {
width: 0;
height: 0;
display: block;
border-top: 15px solid #151513;
border-left: 35px solid transparent;
border-right: 35px solid transparent;
transform: rotate(-30deg);
position: absolute;
top: 40px;
left: -33px;
z-index: 2
}
</style>