Meta Description" name="description" />
<!DOCTYPE html>
<html>
<head>
<style>
body { background: #000; margin: 0; overflow: hidden; font-family: monospace; cursor: crosshair; }
canvas { display: block; position: absolute; top: 0; left: 0; z-index: 1; }
/* الاسم d_ark_p7 مرسوم بأحرف برمجية وعملاق جداً */
#ascii-container {
position: absolute; top: 50%; left: 50%;
transform: translate(-50%, -50%);
z-index: 10; color: #0f0;
/* حجم الخط هنا أكبر ليملأ العرض */
font-size: 1.6vw;
line-height: 1.1;
text-shadow: 0 0 30px #0f0, 0 0 60px #0f0;
pointer-events: none; text-align: center;
font-weight: 900;
background: transparent; /* حذف المربع الخلفي */
}
/* شاشة البدء لتفعيل الصوت والنظام */
#overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,0.95); z-index: 100;
display: flex; justify-content: center; align-items: center;
color: #0f0; font-size: 25px; cursor: pointer;
text-transform: uppercase; letter-spacing: 5px;
}
</style>
</head>
<body>
<div id="overlay">-- [ CLICK TO DEPLOY d_ark_p7 SYSTEM ] --</div>
<canvas id="matrix"></canvas>
<pre id="ascii-container">
::::::::: ::: ::::::::: ::: ::: ::::::::: ::::::::
:+: :+: :+: :+: :+: :+: :+: :+: :+: :+: :+:
+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
+#+ +:+ +#++:++#++: +#++:++#: +#++:++ +#++:++#+ +#+
+#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+
#+# #+# #+# #+# #+# #+# #+# #+# #+# #+#
######### ### ### ### ### ### ### ### ###
</pre>
<script>
const canvas = document.getElementById('matrix');
const ctx = canvas.getContext('2d');
const overlay = document.getElementById('overlay');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const codes = "0x5f61726b5f7037 root@d_ark_p7 system_error inject_payload while(1){fork();} rm-rf/ 010101";
const charArray = codes.split("");
const fontSize = 18;
const columns = canvas.width / fontSize;
const drops = Array(Math.floor(columns)).fill(1);
function draw() {
ctx.fillStyle = "rgba(0, 0, 0, 0.05)";
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = "#0f0";
ctx.font = fontSize + "px monospace";
for (let i = 0; i < drops.length; i++) {
const text = charArray[Math.floor(Math.random() * charArray.length)];
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) drops[i] = 0;
drops[i]++;
}
}
function startAudio() {
const audioCtx = new (window.AudioContext || window.webkitAudioContext)();
// صوت طنين نظام مستمر
const oscillator = audioCtx.createOscillator();
const gainNode = audioCtx.createGain();
oscillator.type = 'sawtooth';
oscillator.frequency.setValueAtTime(45, audioCtx.currentTime);
gainNode.gain.setValueAtTime(0.015, audioCtx.currentTime);
oscillator.connect(gainNode);
gainNode.connect(audioCtx.destination);
oscillator.start();
// أصوات بيب عشوائية سريعة
setInterval(() => {
const beep = audioCtx.createOscillator();
const beepGain = audioCtx.createGain();
beep.type = 'square';
beep.frequency.setValueAtTime(Math.random() * 800 + 100, audioCtx.currentTime);
beepGain.gain.setValueAtTime(0.008, audioCtx.currentTime);
beep.connect(beepGain);
beepGain.connect(audioCtx.destination);
beep.start();
beep.stop(audioCtx.currentTime + 0.07);
}, 300);
}
overlay.addEventListener('click', () => {
overlay.style.display = 'none';
startAudio();
setInterval(draw, 30);
});
window.addEventListener('resize', () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
});
</script>
</body>
</html>
1
1
5KB
5KB
111.0ms
188.0ms
111.0ms