我有一个效果,我跑:
$(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事件。
谢谢德文