web-dev-qa-db-ja.com

JQueryでスパンタグの背景色をフェードします

変更がいつ発生したかを強調するために、JQueryを使用してspanタグの背景色をフェードインしようとしています。コードはクリックハンドラー内で次のようになると思っていましたが、動作しないようです。どこが間違っていたか教えてもらえますか?ラスに感謝します。

$("span").fadeOut("slow").css("background-color").val("FFFF99");

それはより良いですが、今はスパンタグの背景色とスパンタグのテキスト値の両方をフェードインします。背景色をフェードアウトして、テキストを表示したままにしています。それはできますか?

24
Russ Clark

ああ、あなたは色をフェードしたいと思っていませんでした! OK、jQuery colorプラグインをチェックアウトする必要があります:

http://plugins.jquery.com/project/color

https://github.com/jquery/jquery-color/

そして、jQuery docsサイトの別の役立つセクションを次に示します。

http://docs.jquery.com/Release:jQuery_1.2/Effects#Color_Animations

実際にこれを行ったことはないので、コードを提供するつもりはありませんが、カラープラグインが必要な機能を提供すると思います。

10

カラーアニメーションプラグイン で実行できます。次に、次のようなことをします

$('span').animate({'backgroundColor' : '#ffff99'});
16
mishac

純粋なjQを使用して背景をフェードアウトさせることがプラグインなしでは機能しない場合、CSS3でこれを行うための賢明な方法(漸進的に強化されていません)があります。

この関数は、CSSを介して特定の要素に「transition」属性を適用します。次に、要素にはCSSがフェードインする背景色が与えられます。

これを波のようにしたい場合(「ここを見る!」)、0.5秒の遅延の後、関数がキューに入れられ、要素を白に戻します。

基本的に、jQは要素を1つの色に点滅させてから、白に戻します。 CSS3がフェージングを処理します。

//reusable function to make fading colored hints
function fadeHint(divId,color) {
    switch(color) {
        case "green":
        color = "#17A255";
        break;

        case "blue":
        color = "#1DA4ED";
        break;

        default: //if "grey" or some misspelled name (error safe).
        color = "#ACACAC";
        break;
    }

    //(This example comes from a project which used three main site colors: 
    //Green, Blue, and Grey)

    $(divId).css("-webkit-transition","all 0.6s ease")
    .css("backgroundColor","white")
    .css("-moz-transition","all 0.6s ease")
    .css("-o-transition","all 0.6s ease")
    .css("-ms-transition","all 0.6s ease")
    /* Avoiding having to use a jQ plugin. */

    .css("backgroundColor",color).delay(200).queue(function() {
        $(this).css("backgroundColor","white"); 
        $(this).dequeue(); //Prevents box from holding color with no fadeOut on second click.
    }); 
    //three distinct colors of green, grey, and blue will be set here.
}
10
Adam Grant

これは、jQuery(または任意のlib)と簡単なCSSハックで実行できます。

#wrapping-div {
 position:relative;
 z-index:1;
}
#fadeout-div {
 height:100%;
 width:100%;
 background-color: #ffd700;
 position:absolute;
 top:0;
 left:0;
 z-index:-1
}

HTML:

<div id="wrapping-div">
  <p>This is some text</p>
  <p>This is some text</p>
  <p>This is some text</p>
  <div id="fadeout-div"></div>
</div>

次に、必要なことは次のとおりです。

$("#fadeout-div").fadeOut(1100);

かんたんピージー!これを実際に見てください: http://jsfiddle.net/matthewbj/jcSYp/

9
honyovk

これを試して

    $(this).animate({backgroundColor:"green"},  100);
    $(this).animate({backgroundColor:"white" },  1000);
4
Kev

答えが遅いかもしれませんが、あなたの答えに対する簡単な解決策です。

 $('span').css('background-color','#<from color>').animate({backgroundColor: '#<to color>'},{duration:4000});

シンプル。 jqueryUIプラグイン、サードパーティツールなどは必要ありません。

3
Aakash Sahai

プラグインを使いたくなかったので、背景をフェードイン/フェードアウトさせるために、divクラスの背景をフェードさせるためにこれを含めました

.div-to-fade {
    -webkit-transition:background 1s;
    -moz-transition:background 1s;
    -o-transition:background 1s;
    transition:background 1s
}

ボタンをクリックしているjquery

$('.div-to-fade').css('background', 'rgb(70, 70, 70)');
setTimeout(function(){$('.div-to-fade').css('background', '')}, 1000);

これにより、背景が明るい灰色になり、元の色に戻ります。

2
Steve Whitby

最新のjQuery UIビジネスでは、ほとんどのオブジェクトで背景色の変換を行うことができます。ここを参照してください: http://jqueryui.com/demos/animate/

ロールオーバーで背景を透明にして画像を表示することについて質問している人は、通常のjQuery画像のロールオーバーのように、人々がナビゲーション画像を切り替えるのに使用するように簡単に構築できないでしょうか?

1
MeanMatt

そのため、spanタグでfadeOutを呼び出します。背景フェードアニメーションを取得するには、次を使用する必要があります。

$('span').animate({'backgroundColor' : '#ffff99'});

ミシャックが指摘したように。別の方法は次のようなものです:

$("span").fadeTo(0.5,"slow", function () {
  $(this).css("background-color", "#FFFF99");
  $(this).fadeIn("slow");
});

上記のコードは、spanタグ全体の50%までフェードアウトし、背景とfadeInを変更します。それはあなたが探していたものではありませんが、他のjqueryプラグインに依存せずにdecetアニメーションを作成します;)

1
Andrea Pavoni

別のソリューションなしjQuery UI https://stackoverflow.com/a/22590958/781695

//Color row background in HSL space (easier to manipulate fading)
$('span').css('backgroundColor','hsl(0,100%,50%');

var d = 1000;
for(var i=50; i<=100; i=i+0.1){ //i represents the lightness
    d  += 10;
    (function(ii,dd){
        setTimeout(function(){
            $('span').css('backgroundColor','hsl(0,100%,'+ii+'%)'); 
        }, dd);    
    })(i,d);
}

デモ: http://jsfiddle.net/5NB3s/3/

0
user

次の構文を使用する必要があります。

$("span").fadeOut("slow").css("background-color", "#FFFF99");
0

これは、ホバー付きのリストで修正した方法です。

CSS:

ul {background-color:#f3f3f3;}
li:hover {background-color: #e7e7e7}

jQuery:

$(document).ready(function () {
    $('li').on('touchstart', function () { $(this).css('background-color', ''); });
    $('li').on('touchend', function () { $(this).css('background-color', 'inherit'); });
});
0
Zymotik