我知道,“站式”功能被用于阻止im灭。
$( #home ).mouseover(function(){
$( .subhome_icon ).animate({
"width":"5px",
"opacity":"1.0"
},1);
$( .subhome_icon ).animate({
"height":"15px"
},1000);
$( .subhome_icon ).animate({
"width":"60px"
},1000);
}).mouseout(function(){
$( .subhome_icon ).animate({
"opacity" :"0.0"
},1000);
});
And I want to stop the animation when I leave the icon with the mouse pointer ! I ve wathced many jQuery videos but the examples are with one animation .. I ve got 3 !?
感谢你们! iii