基本的には、DIV/CSS/JS を使用してイメージマップを作成しました
私のロールオーバー リンクは次のように設定されています。
<a class="rollover" id="01" href="#" target="_blank">
<div class="mapLinkBox" id="mapLink01"> </div>
</a>
CSS:
.mapLinkBox {
display: block;
z-index: 9999;
overflow: hidden;
position: absolute;
}
#mapLink01 {
bottom: 31px;
left: 35px;
width: 200px;
height: 200px;
}
しかし IE では、リンク ホバー エリアが何らかの影響を受けており、正しく機能していません。問題の原因は何ですか?
ホバーに使用される jQuery:
$(".rollover").each(function() {
$(this).hover(function() {
},function() {
});
})