首先你需要創建一個圖像映射(https://www.w3schools.com/tags/tag_map.asp)
他們是一個圖像(http://imagemap-generator.dariodomi.de/)創建<area>
標籤的工具。
示例HTML:
<map name="planetmap">
<area id="first" shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<area id="second" shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<area id="third" shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
例的JavaScript:
$("area #first").click(function() {
alert("Click!");
}
$("area #second").click(function() {
alert("Click!");
}
爲了更好的代碼風格,你也可以使用https://api.jquery.com/each/
要命,我已經錯過了我生命中的圖像映射..非常感謝!! –
@AndreaBiagioni歡迎您!圖像地圖是** NOT **響應。但是你可以添加這個庫來使其具有代表性。 [點擊此處查看github資源庫](https://github.com/stowball/jQuery-rwdImageMaps) – Pommesloch