百度主页渐变主题

替换主页背景

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         百度主页渐变主题
// @icon         https://www.baidu.com/favicon.ico
// @version      1.2
// @description  替换主页背景
// @author       xiaofang
// @match        *://www.baidu.com/
// @grant        none
// @namespace    https://greasyfork.org/zh-CN/scripts/440971
// ==/UserScript==

$('#wrapper').prepend("<style>@-webkit-keyframes Gradient {0% {background-position: 0% 50%}50% { background-position: 100% 50%}100% {background-position: 0% 50%} } .s-skin-container { height: 100%;background: linear-gradient(-45deg, rgba(9, 69, 138, 0.2), rgba(68, 155, 255, 0.7), rgba(117, 113, 251, 0.7), rgba(68, 155, 255, 0.7), rgba(9, 69, 138, 0.2));    background-size: 400% 400%;-webkit-animation: Gradient 15s ease infinite;animation: Gradient 15s ease infinite;}</style>");
var abc = setInterval(function(){
    /*$(".s-isindex-wrap .sui-wraper").remove();*/
    $("#bottom_layer").remove();
    $(".s-isindex-wrap").removeAttr("style");
},1);
setTimeout(function(){clearInterval(abc);},2000);