我有此腳本使用jQuery:單選按鈕的網頁與fadeto功能
$(document).ready(function() {
$('.fotky,.video,.diskusia,.onas,.zbrane,.akcie,.tabroz,.tabburk,.tabhil,.tablest').append('<span class="hover"></span>').each(function() {
var $span = $('> span.hover', this).css('opacity', 0);
$(this).hover(function() {
$span.stop().fadeTo(1000, 1);
}, function() {
$span.stop().fadeTo(1000, 0);
});
});
});
我有這樣的CSS代碼:
.fotky {
clear: both;
position:relative;
display:block;
height: 56px;
width: 126px;
background:url(images/Fotky.png) no-repeat;
background-position: top;
cursor: pointer;
}
.fotky span.hover {
position: relative;
display: block;
height: 56px;
width: 126px;
background: url(images/Fotky.png) no-repeat;
background-position: bottom;
}
這是我的地盤My test site我怎樣才能使按鈕工作作爲單選按鈕,所以會有圖像的第三部分,點擊後會顯示另一個按鈕後點擊和隱藏。當單擊的部分顯示時,懸停功能不應該在此按鈕上工作。有沒有辦法做到這一點?
這是一個殺手選擇器。 – ShankarSangoli 2012-02-06 22:18:54