I want to make a hover effect to bounce an icon but to have a fixed shadow below. So i'm using Jquery with hover and animating the margin-top. what happends that the image block drags the shadow when it changes it's margin-top How can I fix the shadow in it's position?
here's my code
<style>
#icons
{
list-style-type: none;
margin: 0px;
padding: 0px;
overflow: auto;
}
#icons li
{
float: left;
height: 170px;
padding: 10px 0px 0px 0px;
}
#icons li a.img_bounce
{
display: block;
border: 0px;
}
#icons li img.img_shadow
{
display: block;
border: 0px;
}
</style>
<script>
jQuery(document).ready(function () {
jQuery("#icons a.img_bounce").hover(function(){
jQuery(this).stop().animate({opacity: 0.75, marginTop: -10}, 400);
},function(){
jQuery(this).stop().animate({opacity: 1.0, marginTop: 0}, 400);
});
});
</script>
<ul id="icons">
<li><a href="" class="img_bounce"><img alt="Firefox" src="Firefox.png" width="128" height="128" style="opacity: 1; margin-top: 0px;"></a><img class="img_shadow" width="128" alt="Chrome" src="shadow.png" style="opacity: 1; margin-top: 0px;"></li>
<li><a href="" class="img_bounce"><img alt="Firefox" src="Firefox.png" width="128" height="128" style="opacity: 1; margin-top: 0px;"></a><img class="img_shadow" width="128" alt="Chrome" src="shadow.png" style="opacity: 1; margin-top: 0px;"></li>
<li><a href="" class="img_bounce"><img alt="Firefox" src="Firefox.png" width="128" height="128" style="opacity: 1; margin-top: 0px;"></a><img class="img_shadow" width="128" alt="Chrome" src="shadow.png" style="opacity: 1; margin-top: 0px;"></li>
<li><a href="" class="img_bounce"><img alt="Firefox" src="Firefox.png" width="128" height="128" style="opacity: 1; margin-top: 0px;"></a><img class="img_shadow" width="128" alt="Chrome" src="shadow.png" style="opacity: 1; margin-top: 0px;"></li>
</ul>

I've found out that by adding on the animation a height
on hover
jQuery(this).stop().animate({opacity: 0.75, marginTop: -10,height:138}, 400);
on hover out
jQuery(this).stop().animate({opacity: 0.75, marginTop: -10,height:128}, 400);
it works but.. the original height is somehow modified...it's not the original so modifies the original position of the shadow...after one hover...