前几天瞎逛别人站点的时候,看见了一个以前做电脑壁纸的页面。
然后我灵机一动,咦,我完全可以用这个页面做我的404啊
然后吃水不忘挖井人赶紧给你们上菜
说时迟那时快,我小手一抖
然后你们自己动手哈
【评分走一走 活到九十九】
貌似还有一款某某社-区dai刷wang模板
就是那种bai-度对它非常友好那种
评分=动力
【评分走一走 活到九十九】
义薄云天1
义薄云天2
[Asm] 纯文本查看 复制代码 <!DOCTYPE html><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>瀑布流52pojie.cn之404飞起来了</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
background: black;
}
canvas {
display: block;
}
</style>
</head>
<body>
<canvas id="ad"></canvas>
<script>
var ad = document.getElementById("ad");
var ctx = ad.getContext("2d");
ad.height = window.innerHeight;
ad.width = window.innerWidth;
var chinese = "义薄云天";
chinese = chinese.split("");
var font_size = 10;
var columns = ad.width / font_size;
var drops = [];
for (var x = 0; x < columns; x++) drops[x] = 1;
function draw() {
ctx.fillStyle = "rgba(0, 0, 0, 0.05)";
ctx.fillRect(0, 0, ad.width, ad.height);
ctx.fillStyle = "#0F0";
ctx.font = font_size + "px arial";
for (var i = 0; i < drops.length; i++) {
var text = chinese[Math.floor(Math.random() * chinese.length)];
ctx.fillText(text, i * font_size, drops[i] * font_size);
if (drops[i] * font_size > ad.height && Math.random() > 0.975)
drops[i] = 0;
drops[i]++;
}
}
setInterval(draw, 50);
</script>
</body>
</html>
|