网站首页 > 技术教程 正文
如果你曾看过电影《黑客帝国》,你一定对其中的“数字雨”效果印象深刻:大量绿色的字符在屏幕上从上而下地快速下落,仿佛进入了一个数字化的世界。
今天,我们将学习如何在网页中使用 JavaScript 和 HTML5 <canvas> 元素实现类似的数字雨效果。即便你是编程一无所知的小白,也能通过这篇教程轻松掌握。
准备工作
鼠标右键新建文本文档
重命名新建的文档为 "数字雨.html "
鼠标右键选择在记事本中编辑
数字雨代码
复制以下代码在"数字雨.html"文件中保存,重新打开就能看到数字雨的效果了
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>数字雨效果</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
background: black;
}
canvas {
display: block;
}
</style>
</head>
<body>
<canvas id="myCanvas"></canvas>
<script>
const width = document.getElementById("myCanvas").width = screen.availWidth;
const height = document.getElementById("myCanvas").height = screen.availHeight;
const ctx = document.getElementById("myCanvas").getContext("2d");
const arr = Array(Math.ceil(width / 10)).fill(0);
const str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".split("");
function rain() {
ctx.fillStyle = "rgba(0,0,0,0.05)";
ctx.fillRect(0, 0, width, height);
ctx.fillStyle = "#0f0";
arr.forEach(function (value, index) {
ctx.fillText(str[Math.floor(Math.random() * str.length)], index * 10, value + 10);
arr[index] = value >= height || value > 8888 * Math.random() ? 0 : value + 10;
});
}
setInterval(rain, 30);
</script>
</body>
</html>
下面是具体代码解析~ 不感兴趣的朋友到此可以结束了 !
创建HTML和Canvas元素
首先,我们需要在HTML中创建一个<canvas>元素。这个<canvas>将是我们绘制数字雨效果的地方。
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>数字雨效果</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
background: black;
}
canvas {
display: block;
}
</style>
</head>
<body>
<canvas id="myCanvas"></canvas>
<script src="script.js"></script>
</body>
</html>
在这个HTML文件中,我们创建了一个 <canvas> 元素,指定了 id="myCanvas",同时为页面设置了背景为黑色,隐藏溢出内容,确保画布能够覆盖整个页面。
JavaScript实现数字雨效果
接下来,我们需要用 JavaScript 来编写动画效果。将以下代码放入 script.js 文件中:
const width = document.getElementById("myCanvas").width = screen.availWidth;
const height = document.getElementById("myCanvas").height = screen.availHeight;
const ctx = document.getElementById("myCanvas").getContext("2d");
const arr = Array(Math.ceil(width / 10)).fill(0);
const str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".split("");
// 绘制数字雨效果
function rain() {
ctx.fillStyle = "rgba(0,0,0,0.05)"; // 设置背景色为黑色,透明度为0.05
ctx.fillRect(0, 0, width, height); // 填充整个画布,使字符逐渐消失
ctx.fillStyle = "#0f0"; // 设置字体颜色为绿色(类似《黑客帝国》中的绿色)
arr.forEach(function (value, index) {
ctx.fillText(str[Math.floor(Math.random() * str.length)], index * 10, value + 10);
// 更新每列的字符位置,若字符超出屏幕,重新从顶部开始
arr[index] = value >= height || value > 8888 * Math.random() ? 0 : value + 10;
});
}
// 每隔30毫秒调用一次rain函数,创建动画效果
setInterval(rain, 30);
代码详解
让我们一步步解析上面的 JavaScript 代码,帮助你理解数字雨是如何实现的。
1. 获取画布和设置尺寸
const width = document.getElementById("myCanvas").width = screen.availWidth;
const height = document.getElementById("myCanvas").height = screen.availHeight;
const ctx = document.getElementById("myCanvas").getContext("2d");
- 首先,我们通过 getElementById("myCanvas") 获取到 <canvas> 元素,并设置其宽度和高度为屏幕的可用宽度和高度(screen.availWidth 和 screen.availHeight)。这样,画布会覆盖整个屏幕。
- getContext("2d") 用于获取 2d 绘图上下文对象,它提供了绘制各种图形和文本的能力。
2. 创建字符数组
const arr = Array(Math.ceil(width / 10)).fill(0);
const str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".split("");
- arr 数组用于存储每一列字符的当前Y坐标,初始时每列都从 0 开始。数组的长度是屏幕宽度除以10,表示每列的初始位置。
- str 是一个字符集,包括大写字母和数字。我们将从这个字符集中随机选择字符来显示。
3. 绘制数字雨
function rain() {
ctx.fillStyle = "rgba(0,0,0,0.05)";
ctx.fillRect(0, 0, width, height);
ctx.fillStyle = "#0f0"; // 设置字符颜色为绿色
arr.forEach(function (value, index) {
ctx.fillText(str[Math.floor(Math.random() * str.length)], index * 10, value + 10);
arr[index] = value >= height || value > 8888 * Math.random() ? 0 : value + 10;
});
}
- ctx.fillStyle = "rgba(0,0,0,0.05)" 设置了背景色的透明度,让上一帧的内容逐渐淡出,产生了流畅的数字雨效果。
- ctx.fillText() 用于绘制文本。每一列字符会根据随机选择的字符从 str 中显示出来。index * 10 确定了每列字符的位置,value + 10 控制了字符在Y轴上的下落位置。
- arr[index] = value >= height || value > 8888 * Math.random() ? 0 : value + 10; 这一行代码判断每列字符是否已经超出画布的底部。如果是,则将该列字符重置为顶部(Y坐标为0),否则字符继续下落。
4. 定时调用
setInterval(rain, 30);
- setInterval(rain, 30) 每隔 30 毫秒调用一次 rain() 函数,创建出连续不断的下落效果。
效果预览
运行这段代码后,你会看到浏览器中呈现出类似《黑客帝国》中的数字雨效果,绿色的字符在屏幕上不断下落,产生出一种动态的、视觉冲击力十足的效果。
修改与优化
- 改变字符样式:你可以修改 fillStyle 来更改字符的颜色,例如 ctx.fillStyle = "#00ff00"。
- 控制字符速度:通过调整 value + 10 和 setInterval(rain, 30) 的值,你可以控制字符下落的速度。
- 增加字符集:你可以修改 str 数组,添加更多的字符或者其他符号,使得数字雨效果更加丰富。
虽然这只是一个简单的动画效果,但它向你展示了如何利用 canvas 的绘图功能和 JavaScript 的定时器实现流畅的动态效果。
欢迎在评论区留言!
- 上一篇: 一、黑客学习——从0开始
- 下一篇: 顶级黑客用5分钟爬的python教程!整整400集,建议收藏
猜你喜欢
- 2025-01-10 黑客想远程查看手机
- 2025-01-10 《黑客帝国》中的代码雨让人身临其境!利用Python轻松实现!
- 2025-01-10 顶级黑客用5分钟爬的python教程!整整400集,建议收藏
- 2025-01-10 一、黑客学习——从0开始
- 2025-01-10 30分钟掌握用Python写网络爬虫,入门到实战教程,黑客入门第一步
- 2025-01-10 玩游戏也能学习黑客技术?三步教你从小白进阶黑客,小孩也能学会
- 2025-01-10 常用黑客工具之【Nmap 教程基础】
- 2025-01-10 Goby+AWVS看黑客如何躺着挖洞,看似普通人都能操作
- 2025-01-10 黑客入门教程从零基础入门到精通,看完这一篇就够了
你 发表评论:
欢迎- 最近发表
- 标签列表
-
- sd分区 (65)
- raid5数据恢复 (81)
- 地址转换 (73)
- 手机存储卡根目录 (55)
- tcp端口 (74)
- project server (59)
- 双击ctrl (55)
- 鼠标 单击变双击 (67)
- debugview (59)
- 字符动画 (65)
- flushdns (57)
- ps复制快捷键 (57)
- 清除系统垃圾代码 (58)
- web服务器的架设 (67)
- 16进制转换 (69)
- xclient (55)
- ps源文件 (67)
- filezilla server (59)
- 句柄无效 (56)
- word页眉页脚设置 (59)
- ansys实例 (56)
- 6 1 3固件 (59)
- sqlserver2000挂起 (59)
- vm虚拟主机 (55)
- config (61)
本文暂时没有评论,来添加一个吧(●'◡'●)