首先 - 这是我有史以来的第一个问题(我仍然是初学者),我不能说我多么欣赏这个网站以及我在这里找到的所有帮助。希望我提出的每个问题也可以帮助其他人:)
我意识到不再使用图像映射的人不多,但我有一个,而 twitter 引导程序(版本 3.0.0)正在搞砸我的坐标 - 将链接放在错误的位置。我可以使用以下代码使其工作,但它不会调整大小以适应屏幕。有小费吗?
<style>
<!Driving me nuts - without this the imagemap links are in the wrong places - with this it wont resize>
#img_ID {
max-width:none;
width:auto;
display: inline;
}
</style>
这是实际图像映射代码的片段
<div style="width:100%">
<img id="img_ID" src="NewMatGuide.png" USEMAP="#map" border="0" class="" width:100% alt="">
</div>
<Map id="map_ID" name="map">
<AREA shape="RECT" COORDS="80,151,258,252" HREF="PlacementResults.php?ChosenArea=A">
<AREA shape="RECT" COORDS="80,328,258,432" HREF="PlacementResults.php?ChosenArea=B">
<AREA shape="RECT" COORDS="80,521,258,620" HREF="PlacementResults.php?ChosenArea=C">