IT'S RAINING TACOS

IT'S RAININGGGG TACOSSS

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 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();
})();