如何实现$(this).stop();在jqueryUI中
graph.hover(function() {
wrap
$(this).stop();
.animate( { height: "hide" }, 2000, name )
},
function() {
wrap
$(this).stop();
.animate( { height: "show" }, 2000, name );
});
答案 0 :(得分:1)
像这样:
graph.hover(function() {
$(this).stop().animate( { height: "hide" }, 2000, function(){//Callback})
},
function() {
$(this).stop().animate( { height: "show" }, 2000, function(){//Callback});
});