我正在使用 jquery 构建一个简单的菜单,并且无法让它在翻转时保持可见。
这是我的jQ:
$('.process').hover(function(){
$('#dropdown').fadeIn(1000);
}, function(){
$('#dropdown').delay(1000).fadeOut();
});
$('#dropdown').mouseover(function() {
//Need something here to hold the menu
});
$('#dropdown').mouseleave(function() {
$(this).fadeOut();
});
上面我需要什么?
这是半工作示例: