treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Auto-moving parallax background animation not working

  • Hi everyone! In the Auto-moving parallax background, animation is not working. It was mentioned here, http://css-tricks.com/auto-moving-parallax-background/

    that "before we fire off the animation we have to reset the backgroundPosition within the JavaScript".

    Exactly how do I do that? Can anyone help me with this?

  • Hi @pkmathanraj!

    The code is already in the example... this part of the code:

      $('#midground').css({backgroundPosition: '0px 0px'});
      $('#foreground').css({backgroundPosition: '0px 0px'});
      $('#background').css({backgroundPosition: '0px 0px'});
    

    will reset the backgroundPosition.