我有一个div,其中有多个图像,我们根据另一个图像的点击动画。它有两个选项可以点击,如下面的代码
$('.AspenL').click( function() {
$('.route-box').fadeOut('slow');
$('.AspenR').fadeIn('slow');
});
$('.AspenR .walking-icon').click( function() {
$(".AspenDiv img").each(function(index) {
$(this).delay(1000*index).fadeIn('slow');
$(this).delay(9000).fadeOut('slow');
});
$('.AspenR').delay(100).fadeOut('slow');
});
$('.AspenR .handicap-icon').click( function() {
$(".Aspen-elvDiv img").each(function(index) {
$(this).delay(1000*index).fadeIn('slow');
$(this).delay(8000).fadeOut('slow');
});
$('.AspenR').delay(100).fadeOut('slow');
});
如果点击其中一个停止其他动画,我怎么能这样做呢?目前,如果你足够快,你可以点击这两个图像,当它只显示.AspenR .walking-icon
或.AspenR .handicap-icon animation.