我正在尝试自定义 Nivo 滑块。我已将这些样式添加到 Nivo 滑块。这样,控件nav
就变成了正方形。
.nivo-control {
background-color:#eecd0d;
height:19px;
width:19px;
margin-left:5px;
float:left;
text-indent:-9999px;
text-decoration:none;
}
这很好用,并使所有数字看起来像正方形。现在我想做的是让每个正方形(总是有四个)不同的颜色。我所做的是创建 3 个不同的类(第一种颜色由 nivo-control 定义)。看起来是这样的:
.second_li {
background-color:#ab62bc;
}
.third_li {
background-color:#c491d0;
}
.fourth_li {
background-color:#d6b2de;
}
问题似乎在于 jQuery 代码。我正在使用addClass
动态地将样式添加到控件中,但它似乎不起作用。
$(function(){
$(".nivo-controlNav a:nth-child(2)").addClass('second_li);
$(".nivo-controlNav a:nth-child(3)").addClass('third_li);
$(".nivo-controlNav a:nth-child(4)").addClass('fourth_li);
});