Amar
Last active:
Mood:
View my: Blog | Forum Topics
Contacting Amar
SpaceHey URL:
https://spacehey.com/profile?id=3306279
Amar's Interests
|
General |
|
|
Music |
|
|
Movies |
|
|
Television |
|
|
Books |
|
|
Heroes |
|
Amar's Latest Blog Entries [View Blog]
There are no Blog Entries yet.
Amar's Blurbs
About me:
🩸 مـلـعـون 🩸
هذا البروفايل مسكون منذ 1666...
☠ آخر ضحية: جارك
🕯 مصيرك: يتم تحديده الآن...
👻
// تأثيرات نصية
const victims = ["جارك", "زميلك", "أنت", "صديقك", "الزائر السابق"];
const fates = ["الموت", "الجنون", "لعنة أبدية", "ضياع الروح", "تحول إلى زومبي"];
setInterval(() => {
document.getElementById("victim").textContent =
victims[Math.floor(Math.random() * victims.length)];
document.getElementById("fate").textContent =
fates[Math.floor(Math.random() * fates.length)];
}, 3000);
// شبح يطارد المؤشر
document.addEventListener("mousemove", (e) => {
document.getElementById("ghost").style.left = e.clientX + 15 + "px";
document.getElementById("ghost").style.top = e.clientY + 15 + "px";
});
// إنشاء قطرات دم
function createBlood() {
const container = document.getElementById("blood-drops");
for (let i = 0; i < 15; i++) {
const drop = document.createElement("div");
drop.style.position = "absolute";
drop.style.width = Math.random() * 10 + 5 + "px";
drop.style.height = drop.style.width;
drop.style.background = "#ff0000";
drop.style.borderRadius = "50%";
drop.style.left = Math.random() * 100 + "vw";
drop.style.top = "-10px";
drop.style.opacity = Math.random() * 0.5 + 0.3;
drop.style.animation = `fall ${Math.random() * 3 + 2}s linear infinite ${Math.random() * 5}s`;
container.appendChild(drop);
}
}
// تغيير لون الخلفية تدريجياً
let hue = 0;
setInterval(() => {
document.body.style.backgroundColor = `hsl(${hue}, 100%, 5%)`;
hue = (hue + 1) % 360;
}, 100);
window.onload = createBlood;
Who I'd like to meet:
Amar's Friend Space
[view all]Amar's Friends Comments
Displaying 0 of 0 comments ( View all | Add Comment )