3つのポリゴンのイメージマップがあります。実際の画像のホットスポットは、複数の曲線とエッジで構成される複雑な形状です。
<img src="/images/map.gif" alt="HTML Map"
border="0" usemap="#map"/>
<map name="map">
<area shape="poly"
coords="74,0,113,29,98,72,52,72,38,27"
href="index.htm" alt="area1" />
<area shape="poly"
coords="22,83,126,125"
href="index.htm" alt="area2" />
<area shape="poly"
coords="73,168,32"
href="index.htm" alt="area3" />
</map>
別の色でレンダリングされたmap_over.gifというmap.gifの複製を作成しました。私がやりたいのは、map.gifのクリック可能なホットポスト内の領域をマウスホバーでmap_over.gifに変更することです。CSSまたはJavascriptでこれをどのように達成できるかについての提案はありますか?前もって感謝します。