I couldn't find exactly answer of my question.

This is my buttons which created with css sprites. You can see. When mouseover , background color changing to white (opacity 15% and background transparent) .

I want to add a jQuery effect to this button. When mouseover , background-image will change slowly. And turns white slowly.

I'm trying this . Background-image changing but not slowly.

link|improve this question

69% accept rate
feedback

2 Answers

problem solved with this code :

$('#footerSocialLinks a').hover(function() {

    $(this).fadeTo(150, 1, function() {

        $(this).css("background-position", "0 -37px");
   });
}, function() {
    $(this).fadeTo(250, 1, function() {

        $(this).css("background-position", "0 0px");
   });
});
link|improve this answer
feedback

One solution here is the animate() effect. This effect changes one or more css properties over the duration of the animation.

Unfortunately, the standard JQuery function only works with purely numeric values, so background color can't be changed with it.

Fortunately, JQuery UI comes with an extended animate function that is capable of changing the background color.

$("#footerSocialLinks").children().hover(function(){
          $(this).animate({"backgroundColor":"white"},500);},
    function(){
          $(this).animate({"backgroundColor":"#999"},500);});
link|improve this answer
but i don't want to change background-color , i want to change background-position (i'm using css sprite technique) . ` $(this).animate({"background-position":"0 -37px"},500);}` ? – Eray Feb 3 '11 at 21:47
feedback

Your Answer

 
or
required, but never shown

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