Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple question about color fade.

I want to have that the one color blends into another color in durtation. If I use the kineticjs you can use: .transitionTo(). You can set a duration and he will do the action in the duration given.

Sadly it works only for opacity and movement. Color will still be put instantly instead of blending over time. How can I have still a fade-in with two colors?

share|improve this question

1 Answer

up vote 0 down vote accepted

TransitionTo is only used for numeric values, color is not a numeric value, so you can't use transitionTo on it.

To transition colors, you would have to create your own solution.

Try some existing jQuery : http://jsfiddle.net/sg3s/ktTD6/

jQuery(function($) {

$('#bg-animated').hover(function() {

    $(this).data('bg-original', $(this).css('backgroundColor')).animate({
        backgroundColor: '#FF0000'
    }, 500);

}, function() {

    $(this).animate({
        backgroundColor: $(this).data('bg-original')
    }, 500);

});

});

Background color change transition with jquery

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.