View Single Post
Old 03-08-2013, 11:52 AM   PM User | #1
jarv
Banned

 
Join Date: Mar 2007
Posts: 1,523
Thanks: 116
Thanked 0 Times in 0 Posts
jarv can only hope to improve
Question Animate background image up?

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});
			});
jarv is offline   Reply With Quote