色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

css代碼寫的多啦a夢

李中冰2年前9瀏覽0評論

多啦A夢玩偶早已成為日本動漫界的經(jīng)典代表。如果你也是多啦A夢的粉絲,那么通過CSS代碼,我們可以為多啦A夢的網(wǎng)頁設(shè)計添加更多的趣味性。

img {
border-radius: 50%;
}
#doraemon-head {
width: 200px;
height: 200px;
border: 5px solid blue;
border-bottom: 30px solid blue;
border-top-right-radius: 100px 30px;
border-top-left-radius: 100px 30px;
background: #00ADEF;
margin: 0 auto;
position: relative;
}
#doraemon-eyes {
width: 60px;
height: 70px;
background: white;
border-radius: 50%;
position: absolute;
top: 60px;
left: 70px;
}
#doraemon-eyes::before, #doraemon-eyes::after {
content: "";
position: absolute;
background: black;
width: 20px;
height: 20px;
border-radius: 50%;
}
#doraemon-eyes::before {
top: 20px;
left: 10px;
}
#doraemon-eyes::after {
top: 20px;
right: 10px;
}
#doraemon-nose {
width: 30px;
height: 25px;
background: red;
border-radius: 50%;
position: absolute;
top: 100px;
left: 85px;
z-index: 5;
}
#doraemon-mouth {
width: 100px;
height: 40px;
border: 2px solid black;
border-radius: 50%;
border-top: none;
position: absolute;
top: 140px;
left: 50%;
margin-left: -50px;
background: #FDD231;
}
#doraemon-tongue {
width: 50px;
height: 15px;
background: pink;
position: absolute;
top: -5px;
left: 25px;
border-radius: 50% 50% 0 0;
transform: rotate(20deg);
}
#doraemon-bell {
width: 40px;
height: 40px;
border-radius: 50%;
position: absolute;
background: yellow;
top: 180px;
left: 80px;
border: 2px solid black;
}
#doraemon-pockets {
position: absolute;
top: 220px;
left: 20%;
display: flex;
justify-content: space-between;
}
#doraemon-pocket1, #doraemon-pocket2 {
width: 80px;
height: 80px;
border: 2px solid black;
border-radius: 50%;
background: #00ADEF;
}
#doraemon-pocket3 {
width: 100px;
height: 100px;
border: 2px solid black;
border-radius: 50%;
background: #00ADEF;
}
#doraemon-pocket4 {
width: 50px;
height: 50px;
border: 2px solid black;
border-radius: 50%;
background: #00ADEF;
}

這段CSS代碼為多啦A夢的頭像設(shè)計添加了各種屬性,包括邊框、背景顏色、位置、圓角等等。通過這些效果,我們可以讓多啦A夢的頭像更具有活力和趣味性。