感谢您的支持,我会继续努力的!
打开微信扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
Powered by RUNCODEX.COM,学的不仅是技术,更是梦想!!!
<div id="panda">
<div class="head"></div>
<div class="face"></div>
<div class="eyes"></div>
<div class="eye-balls"></div>
<div class="body"></div>
<div class="paws"></div>
<div class="ears"></div>
</div>
输入 JavaScript 代码……
xxxxxxxxxx
body {
background-color: #e6cff6;
text-align:center;
height: 100%;
margin: 0px;
}
#panda{
margin: 80px auto;
position: relative;
height:417px;
width:417px;
#panda div{
position:absolute;
#panda div::before, #panda div::after {
content:'';
display:block;
.head{
z-index:2;
width:130px;
height:95px;
background-color: white;
border-radius: 80px 80px 60px 60px;
border: 4px solid black;
top:85px;
left:128px;
/*nose*/
.face{
z-index: 3;
width: 12px;
height: 6px;
background-color: black;
border-radius:100%;
top:154px;
left: 190px;
/*black part around eyes*/
/*Left black part of eye*/
.eyes::before{
z-index: 4;
width: 30px;
height: 40px;
top: 115px;
left: 210px;
transform: rotate(-20deg);
border-radius: 100% 100% 88% 88% /100% 100% 88% 88%;
/*Right black part of eye*/
.eyes::after{
left: 154px;
transform: rotate(20deg);
/*eye balls*/
.eye-balls{
z-index: 5;
width:10px;
height:10px;
background-color:white;
box-shadow: 0 0 0 1px black, 54px 0 0 white, 54px 0 0 1px black;
top: 125px;
left: 164px;
/*eye shine*/
.eye-balls::after{
width:3px;
height:3px;
box-shadow: 0 0 0 1px white, 54px 0 0 white, 54px 0 0 1px white;
top: 10px;
left: 10px;
.body{
z-index: 1;
width: 90px;
height: 80px;
border-top-left-radius: 40%;
border-top-right-radius: 40%;
border-bottom-right-radius: 30%;
border-bottom-left-radius: 30%;
top:168px;
left:148px;
/*right ear*/
.ears::before{
width:50px;
height:50px;
border-radius: 100%;
top:90px;
left:228px;
/*left ear*/
.ears::after{
left:117px;
/*beginning of paws*/
/*Bottom paws*/
.paws{
width:26px;
height:66px;
border-radius:0 0 80px 80px;
box-shadow: 50px 0 0 black;
top:210px;
left:158px;
/*Top Left paw*/
.paws::before {
z-index: 2;
height:34px;
border-radius:80px 0px 80px 80px;
left:-8px;
top:-19px;
transform: rotate(-80deg);
/*Top Right paw*/
.paws::after {
border-radius:0px 80px 80px 80px;
left:55px;
transform: rotate(80deg);