あなたはそれらを連鎖させることができます。
$(".previouscontainer").mouseenter(function(){
$("a.previousarrow").animate({left:'0px'},"fast");
}).mouseleave(function(){
$("a.previousarrow").animate({left:'10px'},"fast");
});
$(".nextcontainer").mouseenter(function(){
$("a.nextarrow").animate({right:'0px'},"fast");
}).mouseleave(function(){
$("a.nextarrow").animate({right:'10px'},"fast");
});
または、両方の機能を実行するホバーを使用します
$(".previouscontainer").hover(function(){
$("a.previousarrow").animate({left:'0px'},"fast");
},function(){
$("a.previousarrow").animate({left:'10px'},"fast");
});
$(".nextcontainer").hover(function(){
$("a.nextarrow").animate({right:'0px'},"fast");
},function(){
$("a.nextarrow").animate({right:'10px'},"fast");
});
または、怒って独自のイベントを作成することもできます
$("a.previousarrow").on('moveme', function(){
if ($(this).css('left')>0) $(this).animate({left:'0px'},"fast");
else $(this).animate({left:'10px'},"fast");
});
同じセレクターに含めることができないさまざまなアクションにバインドする必要がある場合
$(".previouscontainer").on('mouseover mouseleave', function(){
$("a.previousarrow").trigger('moveme');
});
$('#somethingelse').on('click', function(){
$("a.previousarrow").trigger('moveme');
});
この猫を振る方法は他にもあります。.hover()
最も賢明です。