我目前正在使用免费的unslider jquery代码整理滚动图片库。 我已经实现了滚动箭头,只想添加点来显示幻灯片的数量和幻灯片的位置。我在剧本中设置了点:true。
以下是网站上的结果: cjeffryes.comoj.com
正如你可以看到我的CSS在某种程度上被应用,你可以看到其中2个幻灯片的轮廓是第三个是实心的,看起来这些点本身就是巨大的。 CSS decalres li点应为10x10px。感谢任何帮助,这是我的CSS:
.banner
{
position:absolute;
margin-top:100px;
}
.banner li
{
list-style: none;
min-height:256px;
min-width:960px;
overflow:auto;
float:left;
}
.banner ul
{
padding: 0;
margin: 0;
float:left;
}
.dots
{
position: absolute;
left: 0;
right: 0;
bottom: 20px;
}
.dots li
{
display: inline;
width: 10px;
height: 10px;
margin: 0 4px;
text-indent: -999em;
border: 2px solid #fff;
border-radius: 600px;
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: #fff;
opacity: 1;
}
答案 0 :(得分:0)
1] 您将.banner li
设置为min-height:256px;
min-width:960px;
。
2] 只需将min-height:none;
和min-width:none;
添加到您的.dots li
CSS声明中。
改变这个:
.dots li
{
display: inline;
width: 10px;
height: 10px;
margin: 0 4px;
text-indent: -999em;
border: 2px solid #fff;
border-radius: 600px;
cursor: pointer;
opacity: .4;
-webkit-transition: background .5s, opacity .5s;
-moz-transition: background .5s, opacity .5s;
transition: background .5s, opacity .5s;
}
对此:
.dots li
{
display: inline;
width: 10px;
height: 10px;
margin: 0 4px;
text-indent: -999em;
border: 2px solid #fff;
border-radius: 600px;
cursor: pointer;
opacity: .4;
-webkit-transition: background .5s, opacity .5s;
-moz-transition: background .5s, opacity .5s;
transition: background .5s, opacity .5s;
min-height:none;
min-width:none;
}