Skip to content

meierma/matrix-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

matrix-js

Matrix-js is a vanilla js library for creating a matrix effect in chosen html elements

Have any suggestions or feedback? Reach out @MarcelMeier92

Demo Website

Getting Started

Just download the matrix.min.js file and link it at the end of your body in your web project.

<div class="matrix"></div>

<script src="matrix.js"></script>
<script>
    document.addEventListener("DOMContentLoaded", function (event) {
        var matrix = new Matrix('.matrix');
    });
</script>

You are able to pass additional settings:

<script>
    document.addEventListener("DOMContentLoaded", function (event) {
        var matrix = new Matrix('.matrix',{
            letters: "田由甲申甴电甶男甸甹町画甼甽甾甿畀畁畂畃畄畅畆畇畈畉畊畋界畍畎畏畐畑",
            font_size: 20,
            font_color: "#0F0",
            bg_color: "#000",
            interval: 50,
            blend_alpha: 0.05,
        });
    });
</script>

About

matrix-js is a vanilla js library for creating a matrix effect in chosen html elements

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published