花里胡哨激光雨

<!--

* @Author: Hezc@

* @Date: 2020-08-25 10:09:36

* @LastEditors: Hezc@

* @LastEditTime: 2020-08-26 16:15:29

* @FilePath: \test\在线代码\激光数字雨.html

-->

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <style>

        body {

            margin: 0;

            overflow: hidden;

        }

    </style>

</head>

<body>

    <canvas id=q></canvas>

    <script>

        const s = window.screen;

        const w = (q.width = s.width);

        const h = (q.height = s.height);

        const ctx = q.getContext("2d");

        const p = Array(Math.floor(w / 10) + 1).fill(0);

        const random = (items) => items[Math.floor(Math.random() * items.length)];

        const hex = "01234dasd64dAdsjo65da648EFiuhadA46a4dsa46das4d4a".split("");

        setInterval(() => {

            ctx.fillStyle = "rgba(0,0,0,.05)";

            ctx.fillRect(0, 0, w, h);

            ctx.fillStyle = "#0f0";

            p.map((v, i) => {

                ctx.fillText(random(hex), i * 10, v);

                p[i] = v >= h || v > 500 + 10000 * Math.random() ? 0 : v + 10;

            });

        }, 1000 / 30);

    </script>

</body>

</html>

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。