關於此頁面:http://www.riversidelab.com/dental-lab-services/all-ceramic/bruxzir-solid-zirconia-crowns-bridges.aspx活動鏈接css不顯示影子
請點擊藍色按鈕VIDEO,它滑過視頻。大。按鈕進入主動模式:黑色文字顏色。但它沒有顯示底部的陰影CSS。我如何使活動按鈕顯示底部陰影?
.btnBlue {
background-color: #34aadc;
border-color: #34aadc;
color: white;
font-style: oblique;
line-height: normal;
font-family: Frutiger47LightCnBold, sans-serif;
font-size: 25px;
width: 100%;
white-space: normal;
box-shadow: 0px 10px 10px -10px #000000;
}
.btnBlue:hover,
.btnBlue:focus,
.btnBlue:active,
.btnBlue.active {
background-color: #249ed2;
border-color: #218ebd;
color: #333333;
}
.btnBlue.disabled:hover,
.btnBlue.disabled:focus,
.btnBlue.disabled:active,
.btnBlue.disabled.active,
.btnBlue[disabled]:hover,
.btnBlue[disabled]:focus,
.btnBlue[disabled]:active,
.btnBlue[disabled].active,
fieldset[disabled] .btnBlue:hover,
fieldset[disabled] .btnBlue:focus,
fieldset[disabled] .btnBlue:active,
fieldset[disabled] .btnBlue.active {
background-color: #34aadc;
border-color: #34aadc;
color: #333333;
}
$(function() {
var activeNavButton = null;
$('.nav_button').on('click', function(evt) {
if (activeNavButton) {
activeNavButton.removeClass('active');
}
activeNavButton = $(this);
activeNavButton.addClass('active');
});
});
這與當前正在發生的事情相反。 –
現在當前的活動鏈接沒有任何陰影,而其他鏈接是底部陰影。 嘗試更改條件,並應該非常有幫助 –