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 finally have this working now but would like to know how I can use JQuery's animate function to make the background image changes fade in nicely when you hover over the list items on the homepage:-

http://www.thebalancedbody.ca/

The Code to make this happen so far is:-

  $("ul#frontpage li#277 a").hover(
   function () {
     $('#homepage_container').css('background-image', 'url(http://www.thebalancedbody.ca/wp-content/themes/balancedbody_V1/images/nutrition_background.jpg)');
     },function () {
     $('#homepage_container').css('background-image', 'url(http://www.thebalancedbody.ca/wp-content/themes/balancedbody_V1/images/default_background.jpg)');
     }
    );

  $("ul#frontpage li#297 a").hover(
   function () {
     $('#homepage_container').css('background-image', 'url(http://www.thebalancedbody.ca/wp-content/themes/balancedbody_V1/images/vibration_training.jpg)');
     },function () {
     $('#homepage_container').css('background-image', 'url(http://www.thebalancedbody.ca/wp-content/themes/balancedbody_V1/images/default_background.jpg)');
     }
    );

etc etc

How would I add the ANIMATE function to this please - thanks!!!

Thanks

Jonathan

share|improve this question

4 Answers

up vote 9 down vote accepted

I don't think this can be done using jQuery's animate function because the background image does not have the necessary CSS properties to do such fading. jQuery can only utilize what the browser makes possible. (jQuery experts, correct me if I'm wrong of course.)

I guess you would have to work around this by not using genuine background-images, but div elements containing the image, positioned using position: absolute (or fixed) and z-index for stacking. You would then animate those divs.

share|improve this answer
so if the background image was one big image (like a sprite) I could then animate the moving / repositioning of this sprite using Anmiate? – Jonathan Lyon Jun 6 '10 at 11:15
3  
@Jonathan - Yes, by animating background-positon, like this: snook.ca/technical/jquery-bg – Nick Craver Jun 6 '10 at 11:16
@Nick good link! @Jonathan what I meant went more in the direction of having two divs underneath each other, and fading one of them out or in. (If you are looking to fade the images.) the animation method is certainly easier. – Pekka 웃 Jun 6 '10 at 11:34
+1 for that link. I started using that plugin some time ago and it just rocks that i can now animate background images! :) See one of my latest bg animations here: mashinaizec.com where i am animating this image: mashinaizec.com/css/images/nav_background.png – Gavrisimo Jun 6 '10 at 11:35
hi guys I have created one big image that can be moved by using background-position:0px -600px for the second list item, then background-position:0px -1200px; for the third list item etc but I can't trigger this in the javascript using the hover event of each list item to animate and move the background image of homepage_container - any ideas? this is the bg image thebalancedbody.ca/wp-content/themes/balancedbody_V1/images/… – Jonathan Lyon Jun 6 '10 at 11:51
show 8 more comments
<style type="text/css">
    #homepage_outter { position:relative; width:100%; height:100%;}
    #homepage_inner { position:absolute; top:0; left:0; z-index:10; width:100%; height:100%;}
    #homepage_underlay { position:absolute; top:0; left:0; z-index:9; width:800px; height:500px; display:none;}
</style>

<script type="text/javascript">
    $(function () {

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

            $('#homepage_underlay').fadeOut('slow', function () {

                $('#homepage_underlay').css({ 'background-image': 'url("http://www.thebalancedbody.ca/wp-content/themes/balancedbody_V1/images/nutrition_background.jpg")' });

                $('#homepage_underlay').fadeIn('slow');
            });

        }, function () {

            $('#homepage_underlay').fadeOut('slow', function () {

                $('#homepage_underlay').css({ 'background-image': 'url("http://www.thebalancedbody.ca/wp-content/themes/balancedbody_V1/images/default_background.jpg")' });

                $('#homepage_underlay').fadeIn('slow');
            });


        });

    });

</script>


<body>
<div id="homepage_outter">
    <div id="homepage_inner">
        <a href="#" id="run">run</a>
    </div>
    <div id="homepage_underlay"></div>
</div>

share|improve this answer

Have a look at this jQuery plugin from OvalPixels.

It may do the trick.

share|improve this answer

Ok, I figured it out, this is pretty simple with a little html trick:

http://jsfiddle.net/kRjrn/8/

HTML

<body>
    <div id="background">.
    </div>
    <p>hello world</p>
    <p>hello world</p>
    <p>hello world</p>
    <p>hello world</p>    
</body>​

javascript

$(document).ready(function(){
    $('#background').animate({ opacity: 1 }, 3000);
});​

CSS

#background {
    background-image: url("http://media.noupe.com//uploads/2009/10/wallpaper-pattern.jpg");
    opacity: 0;
    margin: 0;
    padding: 0;
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
}​
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.