Hey all i am trying my best to find a way to, when hovered on with the mouse, dim the other options around it and also to zoom (bring forward) the hovered item the mouse is currently on.
My code can be found here > Code link
I have the fading items that are not selected working just fine... just need help with the zooming in of the hovered item!
The code i currently have for the zoom effect is terrible and does not work at all....
$('.category-container').bind('mouseover',function() {
$(this).addClass('hover').stop(true,true);
$('.category-container').not('.hover').stop(true,true).fadeTo('fast',0.2).animate({
width: '2em',
height: '2em',
}, 200);
});
$('.category-container').bind('mouseout',function() {
$('.category-container').removeClass('hover').stop(true,true).fadeTo('fast',1);
});
Any help would be great!
UPDATE
I got it working with the effect that i would like... just doesnt seem to fade in the item if you move off one to another without first letting the list fade in first: new code