0

私が実行する効果があります:

$(this).effect("highlight", { color: "#669966" }, 5000, revert);

以下のホバーイベント内でこの効果を一時停止して再開したいと思いますが、これを達成できないようです:

$(this).parent().hover(
    function() {
        if($('.submenu', this).length > 0) {
            $('.submenu', this).css('display', 'inline-block');
        }
        //pause timer

    },
    function() {
        if($('.submenu', this).length > 0) {
            $('.submenu', this).css('display', 'none');
        }
        //resume timer    

    }
);

この JQueryUI イベントを一時停止する方法を教えてください。

ありがとうデヴィン

4

0 に答える 0