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 an image:

<img title="<?php echo JText::_('AEROBOT_HELLO'); ?>" src="images/aerobot.png" id="aerobot" align="right" />

And I want to move the image (make it visible any time), when user scroll the page. I tried this code:

            var $scrollingDiv = $("#aerobot");

        $(window).scroll(function(){            
            $scrollingDiv
                .stop()
                .animate({"marginTop": ($(window).scrollTop() + 30) + "px"}, "slow" );          
        });

But it's moving the whole content(which is under image) that I have on the page. So, how to move only the image with the scroll?

share|improve this question

2 Answers

up vote 1 down vote accepted

make the position:absolute and adjust the top and left values:

img {z-index:1000;top:0; left:0;position:absolute;width: 300px; height: 50px; float:left;}

here is the code in example, minimize the browser for the scroll to show up

Example

to make it stay in its parent container, you have to put display:block to both of them, position:relative to the parent container. for right alignment put right:0 to the image;

img {
    z-index:1000;
    top:0;
    position:absolute;
    width: 350px;
    height: 50px; 
    background-color:blue;   
    right:0;
    display:block;
}
#parent{
    width: 400px;
    height: 400px;
    background-color:red;
    position:relative;
    display:block;
}

Example 2

share|improve this answer
Yes, it's working. One more question. How to align image to the right of the parent div? – Ok-Alex Oct 13 '11 at 18:07

No need to use JS : use the CSS attribute position: fixed. It acts like absolute positionning, but when the user scroll, the image doesn't move up or down.

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.