Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
iam-malithmax authored May 21, 2024
1 parent 139f133 commit 520a666
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,6 @@ $(document).ready(function () {
// Create columns array
const columnsArr = [];
for (let i = 0; i < columns; i++) {
columnsArr[i] = 1;
}

// Draw function
function draw() {
// Black background with opacity
ctx.fillStyle = 'rgba(0, 0, 0, 0.1)';
ctx.fillRect(0, 0, canvas.width, canvas.height);

// Blue text color
ctx.fillStyle = '#00f'; // Blue color for matrix text
ctx.font = fontSize + 'px Courier';

// Loop through columns
for (let i = 0

columnsArr[i]


0 comments on commit 520a666

Please sign in to comment.