Sexy Cat Push Up 4K at Bottom Right

hi mom

// ==UserScript==
// @name         Sexy Cat Push Up 4K at Bottom Right
// @namespace    Custom.Script
// @version      1.6
// @author       fartpooper2565
// @description  hi mom
// @match        *://*/*
// @grant        none
// @noframes
// @license      GPL-3.0-or-later
// @icon         https://media1.tenor.com/m/HBpfYm9_MVoAAAAC/push-up-cat.gif
// ==/UserScript==

(function() {
    'use strict';

    function getColorFromValue(value) {
        return `hue-rotate(${value % 360}deg)`;
    }

    var catgif = document.createElement('img');
    catgif.src = "https://media1.tenor.com/m/HBpfYm9_MVoAAAAC/push-up-cat.gif";
    catgif.style.position = 'fixed';
    catgif.style.bottom = '0';
    catgif.style.right = '0';
    catgif.style.zIndex = '999999999';
    catgif.style.width = '150px';
    catgif.style.cursor = 'pointer';
    catgif.style.filter = getColorFromValue(0);
    var colorchange = 10
    var colorchangetime = 1

    catgif.onclick = function() {
        catgif.remove();
    };

    document.body.appendChild(catgif);

    let value = 0;

    function updateColor() {
        catgif.style.filter = getColorFromValue(value);
        value += colorchangetime;
    }

    setInterval(updateColor, colorchange);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址