• Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
AnonyViet - English Version
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
AnonyViet - English Version
No Result
View All Result

Share the very beautiful Matrix HTML Code written in Canvas

AnonyViet by AnonyViet
February 15, 2023
in Tips
0

If you have ever seen the movie The Matrix (Maxtrix), you must be very fond of the effects in the film. Featuring a black background and green letters falls like a waterfall. A mysterious space will appear before your eyes. If you want to have sex with your girlfriend, use this matrix html code to open the file, then press F11 for Full Screen. Then, press the keyboard to appear dangerous. You will be admired by your girlfriend :)).

Join the channel Telegram belong to AnonyViet 👉 Link 👈

In this article, AnonyViet will Share the beautiful matrix HTML Code that I have collected. In addition, you can see other HTML Codes that AnonyViet has shared at Section Tips – Code

Share the very beautiful Matrix HTML Code written in Canvas

Share Code HTML Very beautiful matrix written in Canvas on HTML5

With HTML5 has strongly supported writing code and supporting graphics by Code. So, with just a few basic lines of code with canvas, you can completely create an html file with full graphic elements without the support of other languages.

If the code copy below fails, download the Matrix Code here

The code below is called “Matrix Background” will describe the simple matrix effect:

<html>
    <head>
        <style>
            
            /*basic reset */
            
            *{
                margin: 0;
                padding: 0;
            }
            
            body {background: black;}
            canvas {display:block;}
        
        </style>
    </head>
    <body>
    
        <canvas id="c"></canvas>
        
        <script>
        // geting canvas by id c
        var c = document.getElementById("c");
        var ctx = c.getContext("2d");

        //making the canvas full screen
        c.height = window.innerHeight;
        c.width = window.innerWidth;

        //characters - taken from the unicode charset
        var matrix = "AnonyViet Dep Trai, We are AnonyViet";
        //converting the string into an array of single characters
        matrix = matrix.split("");

        var font_size = 10;
        var columns = c.width/font_size; //number of columns for the rain
        //an array of drops - one per column
        var drops = [];
        //x below is the x coordinate
        //1 = y co-ordinate of the drop(same for every drop initially)
        for(var x = 0; x < columns; x++)
            drops[x] = 1; 

        //drawing the characters
        function draw()
        {
            //Black BG for the canvas
            //translucent BG to show trail
            ctx.fillStyle = "rgba(0, 0, 0, 0.04)";
            ctx.fillRect(0, 0, c.width, c.height);

            ctx.fillStyle = "#0F0"; //green text
            ctx.font = font_size + "px arial";
            //looping over drops
            for(var i = 0; i < drops.length; i++)
            {
                //a random chinese character to print
                var text = matrix[Math.floor(Math.random()*matrix.length)];
                //x = i*font_size, y = value of drops[i]*font_size
                ctx.fillText(text, i*font_size, drops[i]*font_size);

                //sending the drop back to the top randomly after it has crossed the screen
                //adding a randomness to the reset to make the drops scattered on the Y axis
                if(drops[i]*font_size > c.height && Math.random() > 0.975)
                    drops[i] = 0;

                //incrementing Y coordinate
                drops[i]++;
            }
        }

        setInterval(draw, 35);

        
        </script>
    </body>
</html>

Copy the above code into notepad. Replace the content in quotes, in the line:

var matrix = "AnonyViet Dep Trai, We are AnonyViet";

Tip: replace it with Japanese, Korean characters look even more mysterious

to what you want to display on the screen. Afterward save to a *.html file and open it to enjoy. So you have a very nice matrix file in HTML5.

The article achieved: 5/5 – (100 votes)

Previous Post

Share the latest unlimited Facebook renaming TUT

Next Post

Share TUT Facebook Rename shows the latest hidden treasures

AnonyViet

AnonyViet

Related Posts

How to create funny selfies with pets for your pets
Tips

How to create funny selfies with pets for your pets

June 19, 2026
Chrome extension not working error and the fastest way to fix it
Tips

Chrome extension not working error and the fastest way to fix it

June 19, 2026
Instructions to receive Claude Fable 5 for free for 30 days
Tips

Instructions to receive Claude Fable 5 for free for 30 days

June 15, 2026
Delete all Event Logs on Windows to remove traces of activity
Tips

Delete all Event Logs on Windows to remove traces of activity

June 15, 2026
Instructions for creating Minecraft-style food photos
Tips

Instructions for creating Minecraft-style food photos

June 9, 2026
Get free Cambridge courses to prepare for IELTS, Starters, Movers
Tips

Get free Cambridge courses to prepare for IELTS, Starters, Movers

June 4, 2026
Next Post
Share TUT Facebook Rename shows the latest hidden treasures

Share TUT Facebook Rename shows the latest hidden treasures

0 0 votes
Article Rating
Subscribe
Login
Notify of
guest

guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

Recent News

Instructions for creating Adam’s voice for million-view TikTok videos

Instructions for creating Adam’s voice for million-view TikTok videos

June 21, 2026
Cloud Infrastructure Resilience: Mitigating Advanced Layer 7 Vulnerabilities and Securing High-Throughput Database Handshakes

Cloud Infrastructure Resilience: Mitigating Advanced Layer 7 Vulnerabilities and Securing High-Throughput Database Handshakes

June 20, 2026
Cách hạ cấp iOS 27 xuống iOS 26 an toàn, không lo mất dữ liệu

Cách hạ cấp iOS 27 xuống iOS 26 an toàn, không lo mất dữ liệu

June 20, 2026
How to create funny selfies with pets for your pets

How to create funny selfies with pets for your pets

June 19, 2026
Instructions for creating Adam’s voice for million-view TikTok videos

Instructions for creating Adam’s voice for million-view TikTok videos

June 21, 2026
Cloud Infrastructure Resilience: Mitigating Advanced Layer 7 Vulnerabilities and Securing High-Throughput Database Handshakes

Cloud Infrastructure Resilience: Mitigating Advanced Layer 7 Vulnerabilities and Securing High-Throughput Database Handshakes

June 20, 2026
Cách hạ cấp iOS 27 xuống iOS 26 an toàn, không lo mất dữ liệu

Cách hạ cấp iOS 27 xuống iOS 26 an toàn, không lo mất dữ liệu

June 20, 2026
AnonyViet - English Version

AnonyViet

AnonyViet is a website share knowledge that you have never learned in school!

We are ready to welcome your comments, as well as your articles sent to AnonyViet.

Follow Us

Contact:

Email: anonyviet.com[@]gmail.com

Main Website: https://anonyviet.com

Recent News

Instructions for creating Adam’s voice for million-view TikTok videos

Instructions for creating Adam’s voice for million-view TikTok videos

June 21, 2026
Cloud Infrastructure Resilience: Mitigating Advanced Layer 7 Vulnerabilities and Securing High-Throughput Database Handshakes

Cloud Infrastructure Resilience: Mitigating Advanced Layer 7 Vulnerabilities and Securing High-Throughput Database Handshakes

June 20, 2026
  • Home
  • Home 2
  • Home 3
  • Home 4
  • Home 5
  • Home 6
  • Next Dest Page
  • Sample Page

6789 kv999

No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office

6789 kv999

wpDiscuz
0
0
Would love your thoughts, please comment.x
()
x
| Reply