matrix-wakeup
v1.0.1
Published
Matrix-style animation library with falling symbols and text assembly effect
Maintainers
Readme
Matrix Wakeup Library
Live Demo: https://ak-site.github.io/matrix-wakeup/
A library for creating interactive animation in the style of the cult film "The Matrix" with a text assembly effect.
- Matrix Rain - realistic animation of falling symbols
- Dynamic Assembly - smooth appearance of a phrase from random characters
- Responsive Design - full support for all devices (mobile → 4K)
- High Performance - optimized code with FPS limiting
- Full Customization - adjustable colors, symbols, speed
- Flexible API - control animation through simple methods
- Zero Dependencies - pure JavaScript only
Installation
Via npm
npm install matrix-wakeupOr simply download the file
matrix-wakeup.min.js
CDN
https://cdn.jsdelivr.net/gh/ak-site/matrix-wakeup/matrix-wakeup.min.js
Quick Start
Basic launch:
const matrix = new MatrixWakeup();
matrix.init();With custom phrase:
const matrix = new MatrixWakeup({
assembly: {
targetPhrase: "THE MATRIX HAS YOU"
}
});
matrix.init();API
init()— Initialize the librarysetPhrase(phrase)— Change the displayed phrasestart()— Start animationstop()— Stop animationdestroy()— Complete destructionenableMatrix()— Enable matrix raindisableMatrix()— Disable matrix rainenableAssembly()— Enable phrase assemblydisableAssembly()— Disable phrase assembly
License
MIT License
Copyright (c) 2026 Andrey Kalinin
This license allows you to freely use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software, provided that the copyright notice is retained.
Mandatory condition: When using this library, you must retain the author's information in the source code.
