Skip to content

Commit

Permalink
Updated the Matrix-style webpage to use Croatian Glagolitic script sy…
Browse files Browse the repository at this point in the history
…mbols instead of ASCII characters.

Prompt: Now can you use Croatian glagolitic script as symbols to use for this?

This is all of them:

Ⰰ 	Ⰱ 	Ⰲ 	Ⰳ 	Ⰴ 	Ⰵ 	Ⰶ 	Ⰷ 	Ⰸ 	Ⰹ 	Ⰺ 	Ⰻ 	Ⰼ 	Ⰽ 	Ⰾ 	Ⰿ
Ⱀ 	Ⱁ 	Ⱂ 	Ⱃ 	Ⱄ 	Ⱅ 	Ⱆ 	Ⱇ 	Ⱈ 	Ⱉ 	Ⱊ 	Ⱋ 	Ⱌ 	Ⱍ 	Ⱎ 	Ⱏ
Ⱐ 	Ⱑ 	Ⱒ 	Ⱓ 	Ⱔ 	Ⱕ 	Ⱖ 	Ⱗ 	Ⱘ 	Ⱙ 	Ⱚ 	Ⱛ 	Ⱜ 	Ⱝ 	Ⱞ 	Ⱟ
ⰰ 	ⰱ 	ⰲ 	ⰳ 	ⰴ 	ⰵ 	ⰶ 	ⰷ 	ⰸ 	ⰹ 	ⰺ 	ⰻ 	ⰼ 	ⰽ 	ⰾ 	ⰿ
	ⱀ 	ⱁ 	ⱂ 	ⱃ 	ⱄ 	ⱅ 	ⱆ 	ⱇ 	ⱈ 	ⱉ 	ⱊ 	ⱋ 	ⱌ 	ⱍ 	ⱎ 	ⱏ
ⱐ 	ⱑ 	ⱒ 	ⱓ 	ⱔ 	ⱕ 	ⱖ 	ⱗ 	ⱘ 	ⱙ 	ⱚ 	ⱛ 	ⱜ 	ⱝ 	ⱞ 	ⱟ
  • Loading branch information
lovable-dev[bot] committed Mar 23, 2024
1 parent 01e3fea commit a1c60e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/Index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ const Matrix = () => {
ctx.font = `${fontSize}px monospace`;

for (let i = 0; i < drops.length; i++) {
const text = String.fromCharCode(Math.random() * 128);
const glagoliticChars = "ⰰⰱⰲⰳⰴⰵⰶⰷⰸⰹⰺⰻⰼⰽⰾⰿⱀⱁⱂⱃⱄⱅⱆⱇⱈⱉⱊⱋⱌⱍⱎⱏⱐⱑⱒⱓⱔⱕⱖⱗⱘⱙⱚⱛⱜⱝⱞⱟⰀⰁⰂⰃⰄⰅⰆⰇⰈⰉⰊⰋⰌⰍⰎⰏⰐⰑⰒⰓⰔⰕⰖⰗⰘⰙⰚⰛⰜⰝⰞⰟ";
const text = glagoliticChars[Math.floor(Math.random() * glagoliticChars.length)];
ctx.fillText(text, i * fontSize, drops[i] * fontSize);

if (drops[i] * fontSize > height && Math.random() > 0.975) {
Expand Down

0 comments on commit a1c60e4

Please sign in to comment.