使用一些javascript来为div类中的一个类设置动画。
$(".previouscontainer").mouseenter(function(){
$("a.previousarrow").animate({left:'0px'},"fast");
});
$(".previouscontainer").mouseleave(function(){
$("a.previousarrow").animate({left:'10px'},"fast");
});
$(".nextcontainer").mouseenter(function(){
$("a.nextarrow").animate({right:'0px'},"fast");
});
$(".nextcontainer").mouseleave(function(){
$("a.nextarrow").animate({right:'10px'},"fast");
});
想知道是否有更好/更清晰的方式来写这个?
答案 0 :(得分:2)
你可以链接它们。
$(".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()
是最明智的。