最赞回答 / 旅行的风筝
经过实际的测试toggle:height,width,margin均会变化。完成后设置display完成转换也就是none和block的切换slideToggle主要为height变化但是margin也会变化最后设置displayfadeToggle:通过设置opacity不透明度来完成最后设置display也就是说三者都会设置通过设置display来达到隐藏的目的实现方式决定了动画效果。
$("button").click(function() {
if(!$("#a1").is(':animated')){
$("#a1").hide(3000).show(3000);
}
});
防止重复点击
if(!$("#a1").is(':animated')){
$("#a1").hide(3000).show(3000);
}
});
防止重复点击
2017-04-01
av表演系优秀毕业生 同意这个,不敢苟同赞数最多的两位。stop(true,true)停止所有动画行为,并且直接跳到当前正在执行动画的最后状态,而不是跳到所有动画的最后一帧
2017-03-27
Thank you so much for your patience and kindness. Arron.
2017-03-17