首頁中放上一張全家福或與死黨的合照,游標移 到某個人上方點一下就可以連到那個人的首頁。
有一張旅遊地圖,將游標移到道路或旅遊據點上
不錯的點子,但如何做呢?很簡單,先將相片透
<map name="map-name"> 形狀可以是矩形、圓形、以及多邊形。
假如是矩形,則座標的寫法是:
假如是圓形,則座標的寫法是:
假如是多邊形﹝三角形也算是多邊型﹞,則座標 試試下面這個例子
|
<map name="demo"> <area shape=rect coords="25,20,75,82" href="rect.htm"> <area shape=circle coords="130,50,25" href="circle.htm"> <area shape=polygon coords="203,28,232,80,180,80" href="triangle.htm"> <area shape=polygon coords="272,30,305,30,318,43,292,76,260,47" href="poly.htm"> </map> <img src="images/map.jpg" usemap="#demo" border=0> |