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