如何暂停/恢复JQueryUI效果

时间:2012-09-05 10:07:18

标签: jquery-ui

我有一个效果,我跑:

$(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事件。

谢谢德文

0 个答案:

没有答案