简单来说...... ;-)
我有一个带有商店名称的 href 列表和它的计划。我可以将名称悬停在计划中,相应的商店就会亮起。还悬停在商店亮起的计划中……到目前为止……太好了……
我无法弄清楚:
当将商店悬停在计划上时,我喜欢将列表中的 href 商店名称设置为粗体。
一小段代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet" type="text/css" media="screen"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.maphilight.js"></script>
<script>
$(function() {
$('.map').maphilight({ fillColor: 'FF0000', strokeWidth: 2, fillOpacity: 0.7 });
$('#w147').mouseover(function(e) { $('#m147').mouseover(); }).mouseout(function(e) { $('#m147').mouseout(); }).click(function(e) { e.preventDefault(); });
$('#w148').mouseover(function(e) { $('#m148').mouseover(); }).mouseout(function(e) { $('#m148').mouseout(); }).click(function(e) { e.preventDefault(); });
$('#w149').mouseover(function(e) { $('#m149').mouseover(); }).mouseout(function(e) { $('#m149').mouseout(); }).click(function(e) { e.preventDefault(); });
});</script>
</head>
<body>
<map name="WinkelPlattegrond">
<area id="m147" shape="rect" alt="Winkel 147" title="" coords="332,376,346,390" href="" target="" />
<area id="m148" shape="rect" alt="Winkel 148" title="" coords="348,371,360,391" href="" target="" />
<area id="m149" shape="poly" alt="Winkel 149" title="" coords="339,375,339,364,361,364,361,369,346,369,347,375,340,375" href="" target="" />
</map>
<div style="float:left;">
<a href="#" id="w147">Winkel 147</a><br>
<a href="#" id="w148">Winkel 148</a><br>
<a href="#" id="w149">Winkel 149</a><br>
</div>
<div style="float:left;">
</div>
<div style="float:left;">
<img src="plattegrond_werk.jpg" width="733" height="800" class="map" usemap="#WinkelPlattegrond">
</div>
</body>
</html>