私はホバーインデントプラグインを使用しています。これには、マウスホバーとマウスリーブを組み合わせる機能が1つだけあります。
コード1:
$("#tab").hoverIntent({
over: show,
timeout: 20,
out: hide
});
function show(){
$(".part").show();
}
function hide(){
$(".part").hide();
}
.partのマウス脱退関数を書く必要があるので、このように作成しました
Code2:
$("#tab").hoverIntent({
over: show,
timeout: 20,
out: hide
});
function show(){
$(".part").show();
}
$(".part").hoverIntent({
over: show,
timeout: 20,
out: hide
});
function hide(){
$(".part").show();
}
しかし、それはエラーのようです...これを修正する方法は?