4

我尝试更改页面的某些样式,我希望在用户脚本上使用来更改样式jQuery - css() method

我试过了jsfiddle,我的浏览器使用 Tampermonkey

某些属性样式已更改但未gradient filter更改。这是页面上的样式:

#site-header .meta-header {
    width: 100%;
    min-width: 960px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #1484ce;
   filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF1484CE', endColorstr='#FF1274B5');
        background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1484ce), color-stop(100%, #1274b5));
    background-image: -webkit-linear-gradient(top, #1484ce 0%,#1274b5 100%);
    background-image: -moz-linear-gradient(top, #1484ce 0%,#1274b5 100%);
    background-image: -o-linear-gradient(top, #1484ce 0%,#1274b5 100%);
    background-image: linear-gradient(top, #1484ce 0%,#1274b5 100%);   
    -webkit-box-shadow: 0 2px 0 #0e5a8c;
    box-shadow: 0 2px 0 #0e5a8c;
    border-bottom: solid 1px rgba(255,255,255,0.1);
    font-size: 13px;
    }

这是我的用户脚本:

// ==UserScript==
// @name       Change Style
// @namespace  http://use.i.E.your.homepage/
// @include    http://fiddle.jshell.net/tAKHd/show/light/
// @version    0.1
// @description  enter something useful
// @require        http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant    GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
    introduced in GM 1.0.   It restores the sandbox.
*/


$("body").css({
    "background": "none",
    "background-color": "#2f2f2f"
});

$("#site-header .meta-header").css({
    "background-color": "#2c2c2c",

    /*start - This is style not showing*/

    "filter" : "progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#333333', endColorstr='#222222')",
    "background-image": "-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #333), color-stop(100%, #222))",
    "background-image": "-webkit-linear-gradient(top, #333 0%,#222 100%)",
    "background-image": "-moz-linear-gradient(top, #333 0%,#222 100%)",
    "background-image": "-o-linear-gradient(top, #333 0%,#222 100%)",
    "background-image": "linear-gradient(top, #333 0%,#222 100%)",

    /* end */

    "-webkit-box-shadow": "0 2px 0 rgba(0,0,0,0.25),inset 0 -1px 0 rgba(0,0,0,0.1)",
    "box-shadow": "0 2px 0 rgba(0,0,0,0.25),inset 0 -1px 0 rgba(0,0,0,0.1)",
    "border-bottom": "solid 1px rgba(255,255,255,0.1)"
});

我该如何解决?

4

1 回答 1

6

好的,我解决了我的问题

对于解决方案:

var meta = $("#site-header .meta-header")
meta.css("background-image", "-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #333), color-stop(100%, #222))");
meta.css("background-image", "-webkit-linear-gradient(top, #333 0%,#222 100%)");
meta.css("background-image", "-moz-linear-gradient(top, #333 0%,#222 100%)");
meta.css("background-image", "-o-linear-gradient(top, #333 0%,#222 100%)");
meta.css("background-image", "linear-gradient(top, #333 0%,#222 100%)");
于 2013-05-22T17:02:24.423 回答