您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Снежный фон для форума Lolzteam
// ==UserScript== // @name Snow Lolzteam1 // @namespace snow_lzt1 // @match https://lolz.guru/* // @match https://zelenka.guru/* // @match https://lzt.market/* // @grant none // @version 1.0 // @author its_niks // @icon https://zelenka.guru/favicon.ico // @description Снежный фон для форума Lolzteam // @run-at document-start // ==/UserScript== var particles_count = 100 function addStyle(styleString) { const style = document.createElement('style'); style.textContent = styleString; document.head.append(style); }; window.addEventListener('load', function(){ var div = document.createElement('div'); div.id = "snow"; document.body.append(div); addStyle(` #snow { position: fixed; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: -1111111; } `); var script = document.createElement('script'); script.src = 'https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js'; script.onload = function(){ particlesJS("snow", { "particles": { "number": { "value": particles_count, "density": { "enable": true, "value_area": 800 } }, "color": { "value": "#FFA500" }, "opacity": { "value": 0.7, "random": false, "anim": { "enable": false } }, "size": { "value": 5, "random": true, "anim": { "enable": false } }, "line_linked": { "enable": false }, "move": { "enable": true, "speed": -2, "direction": "bottom", "random": true, "straight": false, "out_mode": "out", "bounce": false, "attract": { "enable": true, "rotateX": 300, "rotateY": 1200 } } }, "interactivity": { "events": { "onhover": { "enable": false }, "onclick": { "enable": false }, "resize": false } }, "retina_detect": true }); } document.head.append(script); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址