私は動作しているJoomla拡張機能(YTメガメニュー)を持っています。既存のコードを更新したいと思います。
mouseenter
およびのコードは次のmouseleave
とおりです。
li.addEvent('mouseenter', function (e) {
//if (objectReference.hasOpenning) return;
log('enter parent of ' + (ul ? ul.id : 'li has not child'));
li.addClass('hover');
if (ulexists) {
objectReference.showChild(ul);
}
});
li.addEvent('mouseleave', function (e) {
log('leave parent of ' + (ul ? ul.id : 'li has not child'));
li.removeClass('hover');
if (ulexists) {
if (ul.pinned) return false;
objectReference.hideChild(ul);
}
});
を非mouseleave
表示にする前に遅延が必要ですul
。これを行う方法はありますか?
助けてください。私は初心者で混乱しています。