"```markdown
使用CSS3绘制一只愤怒的小鸟卡通形象
HTML 结构
<div class=\"bird-container\">
<div class=\"bird\"></div>
</div>
CSS 样式
.bird-container {
position: relative;
width: 200px;
height: 200px;
}
.bird {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background-color: yellow;
border-radius: 50%;
}
.bird::before, .bird::after {
content: \"\";
position: absolute;
background-color: yellow;
}
.bird::before {
width: 30px;
height: 30px;
border-radius: 50%;
top: 20px;
left: 10px;
}
.bird::after {
width: 10px;
height: 10px;
border-radius: 50%;
top: 30px;
left: 40px;
}
.bird-container:hover .bird {
background-color: red;
}
.bird-container:hover .bird::before, .bird-container:hover .bird::after {
background-color: red;
}
以上是使用 CSS3 绘制一只愤怒的小鸟卡通形象的代码。通过 HTML 结构和 CSS 样式,我们可以创建一个容器元素 `.bird-container`,然后在其中放置一个小鸟元素 `.bird`。通过设置相应的样式,我们可以让小鸟元素具有愤怒的外观,包括黄色的身体和红色的眼睛和嘴巴。当鼠标悬停在小鸟容器上时,小鸟的颜色会变成红色。
这样,我们就可以通过 CSS3 绘制一只愤怒的小鸟卡通形象。在实际开发中,可以根据需求进一步完善和调整样式,实现更多的效果和动画。"