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 the following code:

http://jsfiddle.net/EMX4Q/

Which is very simple, when you mouseover the image, it will show you the same image but bigger.

I'd like to achieve an effect like Google's one, at Images: https://www.google.com/search?q=image&oe=utf-8&client=ubuntu&channel=fs&um=1&ie=UTF-8&hl=es&tbm=isch&source=og&sa=N&tab=wi&ei=p6wJUKMpg7LbBfTszdMH&biw=1680&bih=615&sei=qawJUKfHI9Lr0QGOouiLBA

How could I do it?

share|improve this question
2  
do you mean the way it gets bigger gradually when you hover? If so (yes im going to mention jQuery) you could use the jQuery animate function. – Jon Taylor Jul 20 '12 at 19:12
Thanks I will be trying JQuery then. – Jorge Jul 20 '12 at 19:48

1 Answer

up vote 2 down vote accepted

Use jQuery animate(), or addClass()/removeClass() using the time parameter. Here is an example that I have used:

$('.circle').hover(
  function () {
    $(this).addClass('bigger-outer', 1000);
  }, 
  function () {
    $(this).removeClass('bigger-outer', 1000);
  }
);

So it will add/ remove the class of bigger-outer on anything with the class of circle on hover, and transition over 1000 milliseconds, or one second.

share|improve this answer
Thanks I will try that – Jorge Jul 20 '12 at 19:47

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.