Unslider第一个点始终处于活动状态

时间:2014-04-25 15:27:55

标签: jquery css slider gallery

我遇到了unsliders点指示器的问题,以显示哪个幻灯片可见。 此处显示有问题的当前网站:cjeffryes.comoj.com

问题是第一个点始终处于活动状态,即使选择了另一个幻灯片它是纯色,列出了css只是为了保持简短,但所有其他代码都可以从上面的链接中看到。 希望有人可以提供帮助。

CSS:

.banner
{
position:absolute;
margin-top:100px;
}

.banner li
{
list-style: none;
min-height:300px;
min-width:960px;
overflow:auto;
float:left;
}

.banner ul
{
padding: 0;
margin: 0;
float:left;
}

.dots {
position: absolute;
left: 0;
right: 0;
bottom: 20px;
text-align: center;
}

.dots li {
display: inline-block;
min-height:0px;
min-width:0px;
width: 10px;
height: 10px;
margin: 0 4px;
text-indent: -999em;
border: 2px solid #fff;
border-radius: 6px;
cursor: pointer;
opacity: .4;
-webkit-transition: background .5s, opacity .5s;
-moz-transition: background .5s, opacity .5s;
transition: background .5s, opacity .5s;
}

.dots li.active {
background: #000000;
opacity: 1;
}

0 个答案:

没有答案