IT'S RAINING TACOS

IT'S RAININGGGG TACOSSS

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         IT'S RAINING TACOS
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  IT'S RAININGGGG TACOSSS
// @author       Aadoxide
// @match        *://*/*
// @icon         https://cdn.discordapp.com/attachments/779931446991126541/1152645998003368046/Taco.png
// @license      WTFPL
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const tacos = ["🌮"];
    const elements = [];

    function getRandom(min, max) {
        return Math.random() * (max - min) + min;
    }

    for (let i = 0; i < 50 /* the amount of tacos */; i++) {
        const element = document.createElement("div");
        element.style.position = "absolute";
        element.style.left = `${getRandom(0, window.innerWidth)}px`;
        element.style.top = `${getRandom(-500, -50)}px`;
        element.style.fontSize = "20px"; // size of the tacos
        element.textContent = tacos[Math.floor(Math.random() * tacos.length)];
        document.body.appendChild(element);
        elements.push(element);
    }

    function rain() {
        elements.forEach((element) => {
            const currentTop = parseFloat(element.style.top);
            if (currentTop >= window.innerHeight) {
                element.style.top = `${getRandom(-50, -10)}px`;
                element.style.left = `${getRandom(0, window.innerWidth)}px`;
            } else {
                element.style.top = `${currentTop + 1}px`; // falling speed
            }
        });

        requestAnimationFrame(rain);
    }

    rain();
})();