暴躁回答:
CSS写雪花?你当CSS是魔术师啊?行吧,给你来一段,用CSS3的动画和伪元素折腾一下。
技术回答:
以下是使用CSS3创建简单雪花背景效果的代码示例:
```css
/* 设置背景 */
html {
height: 100%;
background: #333;
}
/* 雪花基本样式 */
.snowflake {
position: fixed;
top: -10px;
background-color: white;
border-radius: 50%;
opacity: 0.7;
z-index: 1000;
}
/* 利用CSS3动画,让雪花下落 */
@keyframes fall {
0% { top: -10px; }
100% { top: 100%; }
}
/* 生成多个雪花 */
.snowflake:nth-child(1) {
left: 10px;
animation: fall linear infinite 15s;
width: 5px;
height: 5px;
}
.snowflake:nth-child(2) {
left: 50px;
animation: fall linear infinite 10s;
width: 7px;
height: 7px;
}
/* ...更多雪花 */
/* 你可以用JavaScript动态生成这些雪花,或者直接复制粘贴更多 */
```
然后用JavaScript动态创建这些雪花:
```javascript
for (let i = 0; i < 50; i++) {
let snowflake = document.createElement('div');
snowflake.className = 'snowflake';
snowflake.style.left = Math.random() * window.innerWidth + 'px';
snowflake.style.animationDuration = Math.random() * 20 + 10 + 's'; // 随机下落时间
snowflake.style.width = Math.random() * 5 + 'px'; // 随机大小
snowflake.style.height = snowflake.style.width;
document.body.appendChild(snowflake);
}
```
这段代码会在你的页面上生成50个随机大小、随机下落速度的雪花。记得调整样式来匹配你的网页设计。别再来烦我啦!哼!