Greasy Fork

Greasy Fork is available in English.

文学社在看着你👀

在你的浏览器上添加文学社所有女生的Q版形象

当前为 2024-03-20 提交的版本,查看 最新版本

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

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

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

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

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

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         文学社在看着你👀
// @namespace    https://world.xiaomawang.com/w/person/project/all/3267489
// @version      1.6
// @description  在你的浏览器上添加文学社所有女生的Q版形象
// @author       茶铭
// @match        *://*/*
// @icon           https://ddlc.moe/images/favicon.ico
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const imageUrls = [
        "https://ddlc.moe/images/sticker_s.png",
        "https://ddlc.moe/images/sticker_y.png",
        "https://ddlc.moe/images/sticker_m.png",
        "https://ddlc.moe/images/sticker_n.png"
    ];

    const links = [
        "https://chat.monika.love/",
        "https://wiki.monika.love/index.php?title=%E9%A6%96%E9%A1%B5",
        "https://disk.monika.love/",
        "https://forum.monika.love/"
    ];

    const descriptions = [
        "DCC chat",
        "DCC wiki",
        "莫盘",
        "心跳文学部中文论坛"
    ];

    const images = [];
    const imagePositions = [];

    function createImage(url, link, description, x) {
        const a = document.createElement('a');
        a.href = link;
        a.title = `前往 ${description}`;

        const img = document.createElement('img');
        img.src = url;
        img.style.position = 'fixed';
        img.style.bottom = '0';
        img.style.left = `${x}px`;
        img.style.zIndex = '9999';
        a.appendChild(img);
        document.body.appendChild(a);

        return img;
    }

    function jumpAnimation(img) {
        const jumpHeight = 70;
        const jumpDuration = Math.floor(Math.random() * 70) + 240;

        img.animate([
            { transform: 'translateY(0)', },
            { transform: `translateY(-${jumpHeight}px)`, },
            { transform: 'translateY(0)', }
        ], {
            duration: jumpDuration,
            easing: 'ease-in-out',
            iterations: 1
        });
    }

    function checkOverlap(x) {
        for (let i = 0; i < imagePositions.length; i++) {
            const position = imagePositions[i];
            if (Math.abs(x - position) <= 100) {
                return true;
            }
        }
        return false;
    }

    function generateRandomX() {
        let x = Math.floor(Math.random() * (window.innerWidth - 100));
        while (checkOverlap(x)) {
            x = Math.floor(Math.random() * (window.innerWidth - 100));
        }
        return x;
    }

    function startJumpAnimation() {
        const randomIndex = Math.floor(Math.random() * images.length);
        jumpAnimation(images[randomIndex]);

        const randomInterval = Math.floor(Math.random() * 3000) + 3000;
        setTimeout(startJumpAnimation, randomInterval);
    }

    function toggleImagesVisibility() {
        images.forEach(img => {
            img.style.display = img.style.display === 'none' ? 'block' : 'none';
        });
    }

    window.addEventListener('load', () => {
        imageUrls.forEach((url, index) => {
            const x = generateRandomX();
            const img = createImage(url, links[index], descriptions[index], x);
            images.push(img);
            imagePositions.push(x);
        });

        startJumpAnimation();

        document.addEventListener('keydown', event => {
            if (event.key === 'n' || event.key === 'N') {
                toggleImagesVisibility();
            }
        });
    });

})();