第12節 html建立熱點區域 連結
阿新 • • 發佈:2019-02-13
熱點區域連結
例如:
<html>
<head>
<title>使用文字建立超連結</title>
</head>
<body>
<!--內部特定目標跳轉 將需要跳轉的文字包起來-->
<p>實現特定<a href="https://www.baidu.com/">目標</a>跳轉</p>
<!--實現影象超連結-->
<a href="http://www.csdn.net/" ><img src="D:\溫習網頁\favicon.ico" width="100" height="100"></a>
<br/>
<!--電子郵件超連結-->
郵箱地址:<a href="http://mail.163.com/">123456789</a>@163.com
<br/>
<!--以新視窗顯示連結頁面 新增target屬性值設定為_blank-->
以<a href="https://www.baidu.com/" target="_blank">新視窗方式開啟一個網頁
<br/>
<!--建立熱點區域 難點是找準影象的座標-->
<!--img圖片標籤 border是制定圖片沒有邊框 usemap是指定使用圖片的地圖名
值必須加上#和地圖的名字
map地圖標籤 name是地圖的名字
area是區域屬性
shape是區域的形狀 rect矩形 circle橢圓 poly多邊形
coords是座標屬性:
rect矩形(左上角x,y,右下角x,y)
circle橢圓(圓心x,y,半徑r)
poly多邊形(多邊形個點的座標)-->
<img src="D:\溫習網頁\bd_logo1_31bdc765.png" border="0" usemap="#Mapl">
<map name="Mapl">
<area shape="rect" coords="23,28,111,81" href="D:\溫習網頁\字型樣式.html">
<area shape="circle" coords="187,57,33" href="D:\溫習網頁\字型樣式.html">
<area shape="poly" coords="271,12,321,23,321,80,275,87,251,49" href="D:\溫習網頁\字型樣式.html">
</map>
<body>
</html>