1

如何实现 $(this).stop(); 在 jqueryUI 中

graph.hover(function() {
    wrap
    $(this).stop();
        .animate( { height: "hide" }, 2000, name )

},
function() {
    wrap
    $(this).stop();
    .animate( { height: "show" }, 2000, name );
});
4

1 回答 1

1

像这样 :

graph.hover(function() {
    $(this).stop().animate( { height: "hide" }, 2000, function(){//Callback})

},
function() {
    $(this).stop().animate( { height: "show" }, 2000, function(){//Callback});
});
于 2012-12-03T10:06:13.147 回答