Skip to content

Latest commit

 

History

History
77 lines (63 loc) · 2.74 KB

README.md

File metadata and controls

77 lines (63 loc) · 2.74 KB

digital-rain.js

Canonical Matrix code canvas animation, written in vanilla Javascript, that's easy to add to any webpage. Uses only characters found in the origional matrix code. Customizable with options.

Example
duration: 3, // seconds


Matrix Characters (all mirrored unless noted)

The following list of characters I've identified to be canonical to the oriogional Matrix Code (I did not go through the movie frame-by-frame myself). Unless otherwise noted, all characters were mirrored (backwards) to give the effect of being outside the Matrix, looking in.

  • ALL INCLUDED: 012345789 AEHIMRTXZ ハミヒーウシナモニサワツオリアホテマケメエカキムユラセネスタヌヘ :・."=*+-<>¦| _

  • ARABIC DIGITS: 012345789

    • Not Mirrored:
      • 7
      • 3 is upside-down,
      • 4 has underscore,
    • Missing: 6
  • LATIN LETTERS (Not Mirrored): Z + THEMARIX (THE MATRIX)

  • HALF-WIDTH KATAKANA: ハミヒーウシナモニサワツオリアホテマケメエカキムユラセネスタヌヘ

    • ウオケ has overscore,
    • ネホヤ has underscore;
    • Missing: ヲイクコソチトノフヤヨルレロン
  • Punctuation/Arithmetic/Other: :・."=*+-<>¦| _

  • KANJI: (roughly meaning day/sun)

NOTE: Currently, I have ALL characters are mirrored. I've omitted the Kanji "日" because it increases the width of each column. I would like to correct these innacuracies for a more canonical Matrix code.

Implement:

Add the following to your HTML document:

    <style>
        #digital-rain {
            display: block;
            width:100%;
            height:100%;
            transition: 1s; /* for canvas transparancy after duration */
            z-index:-999;   /* position canvas behind other elements */
        }
    </style>

    <canvas id="digital-rain"></canvas>

    <script src="digital-rain.js"></script>
    <script>
        startDigitalRain();
    </script>

or with options:

    startDigitalRain({
        canvasID: 'digital-rain',           // id of the target canvas element
        dropColor: "#b0fcde",               // (must be HEX format)
        trailColor: '#00a060',              // (must be HEX format)
        backgroundColor: 'rgb(0, 0, 0)',    // (must be rgb format)
        trailLength: '7',                   // (0 - 10)
        fontSize: 14,                       // (px)
        speedCoeff: 25,                     // larger = slower (1 - 200)
        duration: 0,                        // 0 = infinite (seconds)
    });

To do:

  • normalize the "speedCoeff" option
  • unmirror "734ZTHEMARIX"
  • flip 3 upside-down
  • incorporate "日"