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.

http://www.gallyapp.com/tf_themes/chalong_wp/?gallery=this-is-gallery-build-from-custom-post-type-with-image-uploader-backend

I wanna do this effect for my images with jquery move them up and down on hover, i found a plugin that do this effect with mootools but the problem is it doesnt work well with my code.

I wonder if there is a simple way to give this effect? cuz i dont need the light box just the image effect on hover!

share|improve this question
If you don't want the lightbox, than what do you want? – Eric Jul 19 '11 at 4:46
i want the up and down effect on hover – patricia Jul 19 '11 at 4:48

4 Answers

This is how exactly the site does it

$j('.home_portfolio img.frame').each(function() {
    $j(this).hover(function() { 
        $j(this).animate({top: '-10px'}, 300);
    },
    function() {    
        $j(this).animate({top: 0}, 300);
    }); 
});
share|improve this answer
thank you so much! i didnt knew how it work! thanks a lot! – patricia Jul 19 '11 at 5:39

You could do something simple like this

$('.hoverImg').hover(function(){
    $(this).css('padding-top','0px');
    },
    function(){
    $(this).css('padding-top','20px');
    }                 
);

http://jsfiddle.net/jasongennaro/SHrBQ/

share|improve this answer

jsFiddle

$('img.frame').hover(function(){
    $(this).animate({
        'margin-top': '0px'
    }, 400);
},
function(){ 
    $(this).animate({
        'margin-top': '10px'
    }, 400);
});
share|improve this answer
thank you so much!! it works awesome!! – patricia Jul 19 '11 at 5:29

You could use the jQuery animate() method. You just need to animate the position and use some easing for a more pleasing transition effect.

Here is an example: http://jsfiddle.net/tgh8m/56/

share|improve this answer
1  
jsfiddle.net/SHrBQ/21 – rkw Jul 19 '11 at 5:12

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.