我正在尝试创建一个 jquery 动画。
问题是我希望动画仅在满足两个条件时触发。1. if (#element1).mouseleave==true and (#element2).mouseleave==true
,则触发函数。
$(document).ready(function(e) {
$('#contact').add('#rt').mouseenter(function(){
$('#contact').animate({bottom:'45px'}).add('#rt').animate({marginTop:'555px'});
});
if(($('#contact').mouseleave()==true)&& ($('#rt').mouseleave()==true)){
$('#contact').animate({bottom:'-2px'}).add('#rt').animate({marginTop:'600px'});
}
});
mouseenter 的功能正常,问题在于 mouseleave 事件。该功能不会触发。有什么建议么?