創建了此維恩圖作爲一種導航區使用。維恩圖與背景圖片,添加鏈接?
http://i.stack.imgur.com/xlyCJ.png
當用戶將鼠標懸停在每圈的圖像變化(相同的圖像,減去綠色覆蓋和文本)。我想讓每個圈子都是可點擊的,每個圈子都鏈接到網站中的相應頁面。
雖然無法弄清楚。
這裏是我用來創建它的HTML的& CSS。
HTML:
<div class="buttons">
<div><a class="buttons" href="fashion_design.html"></a></div>`
<div><a href="costume_design.html"> </a></div>
<div><a href="photography.html"></a></div>
<div><a href="artwork.html"></a></div>
</div><!--buttons-->
CSS: .buttons DIV { 寬度:390px; height:390px; border-radius:200px; -moz-border-radius:200px; -webkit-border-radius:200px; -khtml-border-radius:200px; float:left; 不透明度:0.9; display:block; }
.buttons div:hover {
background-position:0px 400px;
z-index:5;
position:relative;
}
.buttons div:nth-child(1) {
background-image:url(images/fashion_hover.png);
color: #FFF;
margin-top:60px;
z-index:1;
}
.buttons div:nth-child(2){
background-image:url(images/costume_double.png);
color: #FFF;
margin-left:-60px;
margin-top:60px;
z-index:2;
}
.buttons div:nth-child(3){
background-image:url(images/photography_hover.png);
color: #FFF;
margin-top:-60px;
z-index:3;
}
.buttons div:nth-child(4){
background-image:url(images/artwork_hover.png);
color: #FFF;
margin-left: -60px;
margin-top:-60px;
z-index:4;
}
嘗試了每個JavaScript,完美的作品。非常感謝! – user2233093
是否可以直接導航到頁面而不是打開新窗口? – user2233093
'window.open(「http://www.yahoo.com」,「_self」)' –