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 に答える