This doesn't animate as I expect it would, why doesn't it animate?
HTML
<div id='menuI'></div>
CSS
#menuI {
height: 100px;
width: 100px;
background:url('https://www.teledynedalsa.com/images/semi/STA1600_2_200w.jpg') 0px 0px;
text-align:justify;
}
JavaScript
$(document).ready(function(){
$('#menuI').mouseenter(function(){
$('#menuI').stop();
$('#menuI').animate({
backgroundPosition: '0px 100px'
});
});
$('#menuI').mouseleave(function(){
$('#menuI').stop();
$('#menuI').animate({
backgroundPosition: '0px 0px'
});
});
});