重新定义标准css颜色

时间:2015-03-02 21:54:43

标签: jquery css colors default redefine

是否有一个javascript / jQuery函数可以重新定义标准的css颜色名称? (你可以简单地复制/过去进入你的项目。)

示例:

<div id="example"></div>

<style>

#example { background: red; }

</style>

<script>

if(true) {
    function redefineColor () {
    var backgroundColor = $("*").css("background");   //select all elements

    if( backgroundColor == "#FF0000" ) {              //red color.
      $(this).css("background","#DC143C");              //other shade of red.
    } else { return false}
    redefineColor();
}
</script>

问候

0 个答案:

没有答案