マウスオーバーすると、画像が別の画像にフェードインします。2番目の画像には、ユーザーがたどるリンクの画像マップがあります。マップリンクをクリックしようとするたびに、画像は元の最初の画像にフェードバックします。これが私のこれまでのコードです。ヘルプ
<script type='text/javascript' src='../js/jquery-1.9.1.min.js'>
</script>
<script type='text/javascript'>
$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
});
</script>
<style>
div.fadehover {
position: relative;
}
img.a {
position: absolute;
left: 0;
top: 0;
z-index: 10;
}
img.b {
position: absolute;
left: 0;
top: 0;
}
</style>
</head>
<body>
<div class="fadehover">
<img src="../Background.jpg" alt="" class="a" usemap="#Map" border="0"/>
<img src="../optiontwo.jpg" alt="" class="b"/>
<map name="Map" id="Map" class="maps">
<area shape="rect" coords="100,488,195,540" href="https://vimeo.com/lsufilmclub" />
<area shape="rect" coords="87,433,202,489" href="http://www.youtube.com/user/LSUFilmClub" />
<area shape="rect" coords="702,440,834,493" href="https://www.facebook.com/LSUFilmClub" />
<area shape="rect" coords="711,493,805,562" href="https://twitter.com/LSUFilmClub" />
</map>
</div>
</body>