Sorry for the confusing title but I couldn't put it any better. I have a small issue.
I have a list in which in which I need to have animations on hover, while the other list elements need to have another animation. Sigh, confusing. Wait, I'll show you.
Here's how the list looks normally: http://cl.ly/2i2o0T2Z2d3O0e3y3p15 And here's how it should look when hovering any list element: http://cl.ly/1E143g1q0T3J1K2y2g31
And here's the piece of code I've come up with so far:
$(document).ready(function() {
$("#main-wrap.gift-selection ul.selection-wrap li.gift img").live('mouseover', function() {
$(this).parent().parent().addClass("hover").removeClass("normal");
$(this).stop().addClass("hover", 100);
$("#main-wrap.gift-selection ul.selection-wrap li.normal").addClass("not-hovered");
$("#main-wrap.gift-selection ul.selection-wrap li.not-hovered img").addClass("not-hovered", 100);
return(false);
}).live('mouseout', function() {
$(this).removeClass("hover", 100).parent().parent().removeClass("hover").addClass("normal");
$("#main-wrap.gift-selection ul.selection-wrap li.not-hovered img").removeClass("not-hovered", 100).parent().parent().removeClass("not-hovered");
});
});
Basically, what happens is that if I hover any of the li and then move out, the animations work fine. But once I try to move from one li to another, then it gets messy. I suppose the animations start to contradict each other and it all stops working properly.
My question is that how should I make this function properly; obviously my code is a bit too primitive, too, and that's why it probably starts to contradict once I try to hover li after li.
Hope any of this makes any sense.
Huge thanks in advance.