I am trying to animate top menus with jQuery for this website http://www.homeprideflour.co.uk/index.htm
I am not been able to animate products and collectiables menu image hover animation. I am using hover images as background and changing their position with Jquery. Here is my code
$('.liproduct a').mouseover(function(){
$('.prodimg').stop().animate(
{backgroundPosition:"(50% 0px)"},
{duration:600})
})
.mouseout(function(){
$('.prodimg').stop().animate(
{backgroundPosition:"(50% 100px)"},
{duration:600})
})
Can anyone suggest me how to achieve the mouseover effect same as product menu in above mentioned URL.
Thanks
{backgroundPosition:"(50% 0px)"}to{backgroundPosition:"(50% 0)"}, as units are insignificant for zero values. – Eliran Malka Mar 16 '12 at 9:54animate()with several objects, whereas you should pass a single object with several entries, i.e{backgroundPosition:"50% 100px", duration:600}instead of{backgroundPosition:"50% 100px"}, {duration:600}. – Eliran Malka Mar 16 '12 at 9:58