html动态圣诞树代码
时间: 2023-12-23 10:27:34 浏览: 173
以下是一个简单的HTML动态圣诞树代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<style>
.tree {
position: relative;
width: 120px;
height: 200px;
margin: 0 auto;
}
.tree:before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 0;
height: 0;
border-left: 60px solid transparent;
border-right: 60px solid transparent;
border-bottom: 100px solid green;
transform: translateX(-50%);
}
.tree .ornament {
position: absolute;
width: 20px;
height: 20px;
background-color: red;
border-radius: 50%;
bottom: 0;
left: 50%;
transform: translateX(-50%);}
.tree .ornament:nth-child(1) {
bottom: 40px;
}
.tree .ornament:nth-child(2) {
bottom: 80px;
}
.tree .ornament:nth-child(3) {
bottom: 120px;
}
.tree .ornament:nth-child(4) {
bottom: 160px;
}
.tree .star {
position: absolute;
width: 40px;
height: 40px;
background-color: yellow;
border-radius: 50%;
top: -20px;
left: 50%;
transform: translateX(-50%);
}
</style>
</head>
<body>
<div class="tree">
<div class="ornament"></div>
<div class="ornament"></div>
<div class="ornament"></div>
<div class="ornament"></div>
<div class="star"></div>
</div>
</body>
</html>
```
这段代码使用HTML和CSS创建了一个简单的动态圣诞树。它使用伪元素和绝对定位来绘制树的形状,并使用圆形的装饰物和一个星星来装饰树。你可以将这段代码复制到一个HTML文件中,并在浏览器中打开以查看效果。
阅读全文