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 need my plane to fly up the runway (which is the map) and come back on click. So far it only goes up. Anything java script/html/ jquery related. simple suggestions please. ty ^^ Here's my current code::

<div class="Map"><div id="MovingPlane1"></div></div>

JS :

<script type="text/javascript">
    $(document).ready(function(){
        $("#MovingPlane1").click(function(){
            $("#MovingPlane1").animate({bottom:"250px"},"slow");
        });
    });
<script>
share|improve this question
I have one image and would like it to animate to top and come back without giving a second image. Is there a way to make it rotate and come back? perhaps something with coordinates or is that a little too complicated? – needhelp May 27 '12 at 18:00

3 Answers

jsBin demo

Give both your planes a class .plane and use this code:

$(".plane").click(function(){

   $(this).animate({bottom:250},800,function(){
       $(this).animate({bottom:0},800);
   });

});

Inside the animation callback you redo the initial position.

share|improve this answer
ah so i have to create two different images and divs, then give it that function? if it's two different images how do i hide the second one before the animation starts? (sorry im quite nube :P) – needhelp May 27 '12 at 17:39
@needhelp - Before the click action you can say that element to hide! : $('#MovingPlane2').hide(); – Roko C. Buljan May 27 '12 at 18:23

try:

$(this).animate({bottom:"250px"},"slow",function(){
   $(this).animate({bottom:"0px"},"slow");
});
share|improve this answer
Would be worth replacing the second selector with $(this). – SOliver May 27 '12 at 15:34

If you need the plane to come back on the second click use the following:

var plane1up = false;
$(document).ready(function(){
    $("#MovingPlane1").click(function(){
        $("#MovingPlane1").animate({bottom:(plane1up==true ? "0px" : "250px")},"slow");
    });
});
share|improve this answer
i would like it to move back and forward only in one click, is that possible? – needhelp May 27 '12 at 17:25
Then use one of the two other solutions. They do exactly that by moving the plane back in the callback function, so when the first animation is complete. – chucktator May 27 '12 at 17:31

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.