您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replace the header background on /r/Guildwars2/
// ==UserScript== // @name Down with the sloth! // @include https://*.reddit.com/r/Guildwars2/* // @description:en Replace the header background on /r/Guildwars2/ // @run-at document-start // @grant GM_addStyle // @version 1.6 // @namespace https://gf.qytechs.cn/users/31925 // @description Replace the header background on /r/Guildwars2/ // ==/UserScript== GM_addStyle ("#header::after , #header::before {display: none !important;}"); var position = Math.floor((Math.random() * 100) + 1); var picarray = ["http://i.imgur.com/ea5u5eO.jpg" , "http://i.imgur.com/TEJetJY.jpg" , "http://i.imgur.com/9w3wJve.jpg" , "http://i.imgur.com/UULnDzW.jpg" , "http://i.imgur.com/h0hZfon.jpg" , "http://i.imgur.com/jMsPyQR.jpg" , "http://i.imgur.com/HoiSUqN.jpg" , "http://i.imgur.com/oCYUddy.jpg"] var picture = picarray[Math.floor(Math.random() * picarray.length)]; document.addEventListener("load", function() { var costumheader = document.getElementById("header"); costumheader.style.backgroundImage = "url('" + picture + "')"; costumheader.style.backgroundPosition = "50% " + position + "%"; costumheader.style.backgroundSize = "cover"; }, true); // if you dont like the parallax scroll effect delete or rem the script after this line. document.onscroll = function() { parallax = "50% " + (position + (-window.scrollY / 15)).toFixed(1) + "%"; document.getElementById("header").style.backgroundPosition = parallax; };
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址