I am attempting to create an effect on my website that once you hover over a box, that div slides up to reveal another div containing more details. This is simular to how the following websites do this…
http://www.facebook.com/pages/create.php
http://plus.google.com/pages/create
Facebook – on clicking a category
Google+ – upon hovering over a category (how i would like my website to function)
If anyone could point me in the right direction that would be amazing, thanks 🙂
You can use jQuery’s $.animate() along with some CSS to achieve this effect like this:
Fiddle Here: http://jsfiddle.net/6dnRy/
CSS
HTML
JavaScript
I hope this helps!