2013-08-28 78 views
0

我正在爲家庭人做一個網站,我有他們的照片作爲主頁的背景。現在,當我點擊Stewie上的任何地方(在後臺)激活一個超鏈接並轉到Stewie的網頁,同樣的事情適用於其他人時,我想用什麼語言? CSS,HTML5,JQuery?在特定區域的超鏈接

或者,如果背景也能像黑色的,家庭成員可能是圖片,但仍然,我希望當我去了家族的成員,而不是在他們頭上等

+1

使用[HTML''標籤](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map)。 – JSW189

回答

2

您的空白,激活超鏈接應該使用圖像映射。下面是從W3學校爲例:

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> 

<map name="planetmap"> 
    <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun"> 
    <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury"> 
    <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus"> 
</map> 

http://www.w3schools.com/tags/tag_map.asp

也有一些工具,有協助繪製的區域。 Google應該很容易。