关于右侧悬浮菜单的问题
发布网友
发布时间:2022-05-01 00:29
我来回答
共1个回答
热心网友
时间:2022-06-21 09:28
图片的热点连接要配合<map>标记!
<img src="xxx.gif" usemap="#menuMap">
<map name="menuMap">
<area shape="rect" coords="0,100,70,130" href="url1.htm">
<area shape="rect" coords="0,130,70,160" href="url2.htm">
<area shape="rect" coords="0,160,70,190" href="url3.htm">
<!-- 你还可以设置很多shape定义形状(有矩形圆形多边形等)coords定义形状坐标 -->
</map>