Hi, On my site in my footer I have some social media icons that animate the background up when I hover over.
I would like to do this on my 4 main boxes: Who, work, blog, contact
as you can see, I have attempted it on the first box: "Who are we?"
here is my site:
http://staging.graphitedigital.com/2013/dev/#
Javascript
Code:
jQuery('ul#sections li#who').hover(function() {
jQuery(this).stop().animate({
marginTop : '-182px'
}, {queue:false,duration:600,easing:'easeInOutQuint'});
}, function(){
jQuery(this).stop().animate({
marginTop : '0px'
}, {queue:false,duration:850});
});