我有一个带有 HTML 的大图像<map>
,我想跳转到该图像上的特定区域。我已经使用<area />
标签来标记位置
看一下代码:
<img src="demo_files/k3.png" id="target" alt="Map" usemap="#powerpuffgirls" />
<map name="powerpuffgirls">
<area shape="rect" coords="624,137,671,167" href="#" id="ppg" title="The Powerpuff Girls" alt="The Powerpuff Girls" />
<area shape="rect" coords="99,2685,161,2723" href="#" name="ppg1" title="The Powerpuff Gidrls" alt="The Powerpuff sGirls" />
</map>
但是,我无法移动到图像上的任何区域。
编辑:移动到图像特定区域的任何其他方法都会很棒!