本文介紹HTML a shape 屬性的使用方法,在線實例演示如何使用HTML a shape 屬性、瀏覽器的兼容性、語法定義及它的屬性值詳細資料等。
在<a>元素中使用shape和coords屬性來創(chuàng)建圖像映射:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML a shape 屬性-菜鳥教程(cainiaoplus.com)</title> </head> <body> <object data="planets.gif" alt="Planets" type="image/gif" usemap="#Map1"> <map name="Map1"> <a href="sun.html" shape="rect" coords="0,0,82,126">The Sun</a> <a href="mercur.html"shape="circle" coords="90,58,3">Mercury</a> <a href="venus.html" shape="circle" coords="124,58,8">Venus</a> </map> </object> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
目前只有Firefox 和 Opera 支持 shape 屬性。
HTML5 不再支持 <a> 標(biāo)簽的 shape 屬性。
shape 屬性與 coords 屬性配合, 以指定<object>或<img>元素中鏈接的大小,形狀和位置。
提示:如要創(chuàng)建可在所有瀏覽器中使用的圖像映射,請使用 <area> 元素!
<a shape="value">
值 | 描述 |
---|---|
default | 規(guī)定全部區(qū)域。 |
rect | 定義矩形區(qū)域。 |
circle | 定義圓形。 |
poly | 定義多邊形區(qū)域。 |