none
当前为
// ==UserScript==
// @name Drawaria Rainbow theme by 𝘣𝘢𝘳𝘴𝘪𝘬 𝘩𝘢𝘤𝘬𝘦𝘳
// @namespace https://gf.qytechs.cn/ru/users/1485055-%D0%BC%D1%83%D1%80%D1%87%D0%B8%D0%BA-%D0%BC%D1%83%D1%80%D1%87%D0%B8%D0%BA%D0%BE%D0%B2%D1%81%D0%BA%D0%B8%D0%B9
// @version 0.7
// @description none
// @author 𝘣𝘢𝘳𝘴𝘪𝘬 𝘩𝘢𝘤𝘬𝘦𝘳
// @match https://drawaria.online/*
// @grant none
// @license MIT
// ==/UserScript==
(function () {
'use strict';
const style = document.createElement('style');
style.textContent = `
html, body {
margin: 0;
padding: 0;
height: 100%;
position: relative;
z-index: 0;
}
body::after {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: linear-gradient(45deg,
#003366,
#0055aa,
#0099cc,
#00cc99,
#66ff66,
#ffff00,
#ff9900,
#ff0066,
#9900cc
);
background-size: 400% 400%;
animation: rainbowShiftForward 30s linear forwards;
z-index: -100;
pointer-events: none;
}
@keyframes rainbowShiftForward {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
`;
document.head.appendChild(style);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址