JS实现黑客帝国的代码雨特效

首页 / 技术积累 / 正文

前言

该效果是自己在加入社团学习前端的时候看到的,那时候就很喜欢到处找那种JS的特效,觉得这个很不错就保存了下来,一直延续到了现在,当时并不懂其中原理,现在我知道就是用画布将字母随机下落,其中JS里我也注释了。

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>黑客帝国-代码雨</title>
    <style type="text/css">
        body {
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
    </style>
</head>

<body>
    <canvas id="canvas" style="background:black" width="620" height="340"></canvas>
    <script type="text/javascript">
        window.onload = function () {
            //获取图形对象
            var canvas = document.getElementById("canvas");
            //获取图形的上下文
            var context = canvas.getContext("2d");
            //获取浏览器屏幕的宽度和高度
            var W = window.innerWidth;
            var H = window.innerHeight;
            //设置canvas的宽度和高度
            canvas.width = W;
            canvas.height = H;
            //每个文字的字体大小
            var fontSize = 15;
            //计算列
            var colunms = Math.floor(W / fontSize);
            //记录每列文字的y轴坐标
            var drops = [];
            //给每一个文字初始化一个起始点的位置
            for (var i = 0; i < colunms; i++) {
                drops.push(0);
            }
            //运动的文字
            var str = "01abcdefghijklmnopqurstuvwxyz";
            //4:fillText(str,x,y);原理就是去更改y的坐标位置
            //绘画的函数
            function draw() {
                //让背景逐渐由透明到不透明
                context.fillStyle = "rgba(0,0,0,0.05)";
                context.fillRect(0, 0, W, H);
                //给字体设置样式
                //context.font = "700 "+fontSize+"px  微软雅黑";
                context.font = fontSize + 'px arial';
                //给字体添加颜色
                context.fillStyle = "green";//随意更改字体颜色
                //写入图形中
                for (var i = 0; i < colunms; i++) {
                    var index = Math.floor(Math.random() * str.length);
                    var x = i * fontSize;
                    var y = drops[i] * fontSize;
                    context.fillText(str[index], x, y);
                    //如果要改变时间,肯定就是改变每次他的起点
                    if (y >= canvas.height && Math.random() > 0.92) {
                        drops[i] = 0;
                    }
                    drops[i]++;
                }
            };
            function randColor() {
                var r = Math.floor(Math.random() * 256);
                var g = Math.floor(Math.random() * 256);
                var b = Math.floor(Math.random() * 256);
                return "rgb(" + r + "," + g + "," + b + ")";
            }
            draw();
            setInterval(draw, 33);
        };
    </script>
</body>

</html>

最后

以上代码复制即可使用,仅供学习交流,源于互联网,侵权请联系删除。

JS
评论区
头像