I have several rollover images that resize, then return to original when moused over.
When an image animates, its movements are sequential, not synchronous. It gets taller, then wider. I want these to happen at the same time. Any thoughts?
Here's a snippet of my current animation:
$(".square.one,#link_nest").mouseenter(function(){
if ($(".the-nest")[0]){
$("#link_nest").css({color:"#153d53",fontWeight:"400"},100);
}
else{
$(".square.one").filter(':not(:animated)').animate({width:"150px",height:"220px"},200);
$("#link_nest").css({color:"#153d53",fontWeight:"400"},100);
}
});