1.0.8 • Published 2 years ago

react-matrix-code-rain v1.0.8

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
2 years ago

react-matrix-code-rain

A simulation of the Matrix \"Code Rain\" effect.

Code inspirate by

Installation

npm i react-matrix-code-rain

React

Declaration

/// <reference types="react" />
export type MatrixCodeRainComponentProps = {
  width?: number | string;
  height?: number | string;
  timeout?: number;
  textStrip?: string[];
  theColors?: string[];
  stripCount?: number;
};
declare const MatrixCodeRainComponent: React.FC<MatrixCodeRainComponentProps>;
export default MatrixCodeRainComponent;

Usages

import './App.css';
import MatrixCodeRainComponent from 'react-matrix-code-rain';

function App() {
  return (
    <div className="App">
      <MatrixCodeRainComponent />
    </div>
  );
}

export default App;

Screen

Screen example

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago