帮我写一个兼容手机端的雪花代码,不要把随机数写到style里面
时间: 2024-05-01 19:18:29 浏览: 47
好的,关于你的问题,以下是一个兼容手机端的雪花代码:
```
<!DOCTYPE html>
<html>
<head>
<title>Snowflakes</title>
<style>
body {
background-color: #000;
overflow: hidden;
}
.flake {
position: absolute;
height: 10px;
width: 10px;
background-color: #fff;
border-radius: 50%;
z-index: 999;
pointer-events: none;
-webkit-animation: falling 5s linear infinite;
animation: falling 5s linear infinite;
}
@keyframes falling {
0% {
top: -10%;
transform: rotate(0deg);
}
100% {
top: 110%;
transform: rotate(360deg);
}
}
@-webkit-keyframes falling {
0% {
top: -10%;
transform: rotate(0deg);
}
100% {
top: 110%;
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<script>
var flakeCount = 50;
for (var i = 0; i < flakeCount; i++) {
createFlake();
}
function createFlake() {
var flake = document.createElement('div');
flake.classList.add('flake');
flake.style.left = Math.floor(Math.random() * window.innerWidth) + 'px';
flake.style.animationDelay = Math.floor(Math.random() * 3) + 's';
document.body.appendChild(flake);
}
</script>
</body>
</html>
```
希望能解决你的问题。现在轮到你了,请问你有什么问题需要我回答吗?
阅读全文