我正在尝试使用来自 jQuery 的 .click 事件来更改 5 div 的 class="Hoofdstuk" 底部边框的颜色。正如您在以下链接中看到的:
如您所见,它不起作用。这是HTML代码:
<div class="Hoofdstuk" id="Introductie"></div>
<div class="Hoofdstuk" id="Content"></div>
<div class="Hoofdstuk" id="Interactie"></div>
<div class="Hoofdstuk" id="FrontEnd"></div>
<div class="Hoofdstuk" id="Projecten"></div>
这是我的 jQuery 代码:
$('.Hoofdstuk').click(function () {
$(this).animate({
'width': '55em'
}).siblings().animate({
'width': '5em'
}).css({
'border-color': '#ffba00'
}).siblings().css({
'border-color': '#333'
})
});
这是CSS代码:
.Hoofdstuk {
width: 5em;
height: 25em;
float: left;
border-width: 0.1em;
overflow:hidden;
border-bottom: #ffba00 solid 0.5em;
}
如果有人能看到这个问题,请告诉我。
我感谢你的时间。
扬克