91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

html img area

發布時間:2020-08-03 21:43:09 來源:網絡 閱讀:323 作者:xztelecomlcs 欄目:web開發

<html>  

<head>  

<meta http-equiv="Content-Type" content="text/html; charset=gbk">  

<title>img usemap屬性</title>  

</head>  

  

<body>  

       

    <img src="https://cache.yisu.com/upload/information/20200311/54/211889.jpg" usemap="#Map" border="1"/>  

       

    <map name="Map" >  

        <area shape="rect" coords="73,87,103,104" href="javascript:alert('新疆')">  

        <area shape="rect" coords="144,125,173,142" href="javascript:alert('青海')">  

        <area shape="rect" coords="84,158,115,175" href="javascript:alert('西藏')">  

        <area shape="rect" coords="220,90,257,105" href="javascript:alert('內蒙古')">  

        <area shape="rect" coords="348,45,389,61" href="javascript:alert('黑龍江')">  

        <area shape="rect" coords="346,68,371,83" href="javascript:alert('吉林')">  

        <area shape="rect" coords="323,84,351,100" href="javascript:alert('遼寧')">  

        <area shape="rect" coords="298,100,326,114" href="javascript:alert('天津')">  

        <area shape="rect" coords="288,120,314,136" href="javascript:alert('山東')">  

        <area shape="rect" coords="268,107,295,121" href="javascript:alert('河北')">  

        <area shape="rect" coords="207,116,235,130" href="javascript:alert('寧夏')">  

        <area shape="rect" coords="186,162,214,179" href="javascript:alert('四川')">  

        <area shape="rect" coords="256,142,281,157" href="javascript:alert('河南')">  

        <area shape="rect" coords="305,144,332,159" href="javascript:alert('江蘇')">  

        <area shape="rect" coords="320,162,342,177" href="javascript:alert('上海')">  

        <area shape="rect" coords="216,168,243,185" href="javascript:alert('重慶')">  

        <area shape="rect" coords="250,162,277,177" href="javascript:alert('湖北')">  

        <area shape="rect" coords="283,161,308,177" href="javascript:alert('安徽')">  

        <area shape="rect" coords="213,196,239,209" href="javascript:alert('貴州')">  

        <area shape="rect" coords="243,183,269,198" href="javascript:alert('湖南')">  

        <area shape="rect" coords="273,185,299,200" href="javascript:alert('江西')">  

        <area shape="rect" coords="308,177,334,193" href="javascript:alert('浙江')">  

        <area shape="rect" coords="179,210,204,225" href="javascript:alert('云南')">  

        <area shape="rect" coords="227,214,252,228" href="javascript:alert('廣西')">  

        <area shape="rect" coords="231,248,257,263" href="javascript:alert('海南')">  

        <area shape="rect" coords="292,200,319,214" href="javascript:alert('福建')">  

        <area shape="rect" coords="259,219,287,231" href="javascript:alert('廣東')">  

        <area shape="rect" coords="244,231,270,246" href="javascript:alert('澳門')">  

        <area shape="rect" coords="276,232,304,248" href="javascript:alert('香港')">  

        <area shape="rect" coords="311,228,338,243" href="javascript:alert('臺灣')">  

        <area shape="rect" coords="272,90,302,107" href="javascript:alert('北京')">  

        <area shape="rect" coords="196,130,222,145" href="javascript:alert('甘肅')">  

        <area shape="rect" coords="246,116,272,130" href="javascript:alert('山西')">  

        <area shape="rect" coords="224,136,252,151" href="javascript:alert('陜西')">  

    </map>  

</body>  

</html>  


http://www.w3school.com.cn/tags/tag_area.asp 


HTML圖片熱區map area的用法

2011-01-04

<area>標記主要用于圖像地圖,通過該標記可以在圖像地圖中設定作用區域(又稱為熱點),這樣當用戶的鼠標移到指定的作用區域點擊時,會自動鏈接到預先設定好的頁面。其基本語法結構如下:

1

<area

2

    class=type

3

    id=Value

4

    href=url

5

    alt=text

6

    shape=area-shape

7

    coods=value>

shape和coords:是兩個主要的參數,用于設定熱點的形狀和大小。其基本用法如下:

<area shape="rect" coords="x1, y1,x2,y2" href=url>表示設定熱點的形狀為矩形,左上角頂點坐標為(X1,y1),右下角頂點坐標為(X2,y2)。

<area shape="circle" coords="x1, y1,r" href=url>表示設定熱點的形狀為圓形,圓心坐標為(X1,y1),半徑為r。

<area shape="poligon" coords="x1, y1,x2,y2 ......" href=url>表示設定熱點的形狀為多邊形,各頂點坐標依次為(X1,y1)、(X2,y2)、(x3,y3) ......。

<area>標記是在圖像地圖中劃分作用區域的,因此其劃分的作用區域必須在圖像地圖的區域內,所以在用 <area> 標記劃分區域前必須用HTML的另一個標記<map>來設定圖像地圖的作用區域,并為指定的圖像地圖設定名稱,該標記的用法很簡單,即<map name="圖像地圖名稱"> ...... </map>。

下面通過一個例子來說明這兩個標記的用法:

這里是一幅新書架的圖片,要做的效果是:當鼠標點"網址大全"這本書時,新開一窗口,顯示關于這本書的簡介及訂單的網頁(urlall.htm);當 鼠標點"網站設計攻略"這本書時,新開一窗口,顯示關于這本書的簡介及訂單的網頁(siteall.htm);當鼠標點"網頁技巧大全"這本書時,新開一 窗口,顯示關于這本書的簡介及訂單的網頁(pagejqlall.htm)。制作方法:

插入圖片,并設置好圖像的有關參數,且在<img>標記中設置參數usemap="newbook" ismap,以表示對圖像地圖(newbook)的引用;

用<map>標記設定圖像地圖的作用區域,并取名為:newbook;

分別用<area>標記針對三本書的位置劃分出三個矩形作用區域,并設定好其鏈接參數href。

1

<img src="p_w_picpath/htmlp3.gif" width="207" height="148" alt="新書架" hspace="10" align="left" usemap="#newbook" border="0">

2

<map name="newbook">

3

<area shape="rect" coords="56,69,78,139" href="urlall.htm" target="_blank" alt="這里收集十萬多個網址。" title="這里收集十萬多個網址。">

4

<area shape="rect" coords="82,70,103,136" href="siteall.htm" target="_blank" alt="網站設計師的啟蒙讀本。" title="網站設計師的啟蒙讀本。">

5

<area shape="rect" coords="106,68,128,136" href="pageall.htm" target="_blank" alt="網頁制作者不可不讀的書。" title="網頁制作者不可不讀的書。">

6

</map>

在制作本文介紹的效果時應注意的幾點:

在<img>標記不要忘記設置usemap、ismap參數,且usemap的參數值必須與<map>標記中的name參數值相同,也就是說,"圖像地圖名稱"要一致;

同一"圖像地圖"中的所有熱點區域都要在圖像地圖的范圍內,即所有<area>標記均要在<map>與</map>之間;

在<area>標記中的 cords 參數設定的坐標格式要與shape參數設定的作用區域形狀配套,避免出現在shape參數設置的矩形作用區域,而在cords 中設置的卻是多邊形區域頂點坐標的現象出現。

coords 屬性

<area> 標簽的 coords 屬性定義了客戶端圖像映射中對鼠標敏感的區域的坐標。坐標的數字及其含義取決于 shape 屬性中決定的區域形狀。可以將客戶端圖像映射中的超鏈接區域定義為矩形、圓形或多邊形等。

下面列出了每種形狀的適當值:

圓形:shape="circle",coords="x,y,z":這里的 x 和 y 定義了圓心的位置("0,0" 是圖像左上角的坐標),r 是以像素為單位的圓形半徑。

多邊形:shape="polygon",coords="x1,y1,x2,y2,x3,y3,...":每一對 "x,y" 坐標都定義了多邊形的一個頂點("0,0" 是圖像左上角的坐標)。定義三角形至少需要三組坐標;高緯多邊形則需要更多數量的頂點。多邊形會自動封閉,因此在列表的結尾不需要重復第一個坐標來閉合整個區域。

矩形:shape="rectangle",coords="x1,y1,x2,y2":第一個坐標是矩形的一個角的頂點坐標,另一對坐標是對角的頂點坐標,"0,0" 是圖像左上角的坐標。請注意,定義舉行實際上是定義帶有四個頂點的多邊形的一種簡化方法。

例如,下面的 XHTML 片段在一個 100x100 像素圖像的右下方四分之一處,定義了一個對鼠標敏感的區域,并在圖像的正中間定義了一個圓形區域。

view sourceprint?

1

<map name="map">

2

<area shape="rect" coords="75,75,99,99" nohref="nohref">

3

<area shape="circ" coords="50,50,25" nohref="nohref">

4

</map>

注釋:如果某個 area 標簽中的坐標和其他區域發生了重疊,會優先采用最先出現的 area 標簽。瀏覽器會忽略超過圖像邊界范圍之外的坐標。



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

伊吾县| 岐山县| 冕宁县| 深圳市| 金沙县| 曲水县| 叙永县| 横峰县| 稷山县| 玛纳斯县| 米脂县| 龙门县| 阿鲁科尔沁旗| 商洛市| 鄂州市| 任丘市| 巴东县| 读书| 如东县| 长沙市| 盐津县| 拜城县| 顺平县| 友谊县| 项城市| 慈利县| 南丹县| 常德市| 福贡县| 资兴市| 扬中市| 黑龙江省| 金门县| 甘南县| 台东县| 永年县| 永德县| 乌拉特后旗| 山西省| 贵州省| 西青区|