我试图将下一个和上一个箭头显示在产品滑块旁边,就像在Slick Slider示例中一样。但是我的样本似乎没有加载适当的字体来实现这一点。
这是我的代码:
HTML
<div class="slider">
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/8013LN_Cat.jpg" height="100" width="100">
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/HiddenTailor.9074B.jpg" height="100" width="100">
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/1600ETY.JPG" height="100" width="100">
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/VIPERPRO81.jpg" height="100" width="100">
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/garment_bag.jpg" height="100" width="100">
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/1077.jpg" height="100" width="100">
</div>
</div>
CSS
body{
background-color: #fff;
}
.slider{
margin: 60px auto;
width: 500px;
}
div{
height: 100%;
}
p{
text-align: center;
font-size: 12px;
color: white;
}
的JavaScript
$(document).ready(function(){
$('.slider').slick({
centerMode: true,
centerPadding: '60px',
dots: false,
infinite: true,
speed: 300,
slidesToShow: 4,
slidesToScroll: 1,
arrows: true
});
});
答案 0 :(得分:19)
在你的小提琴中,你忘记了将slick-theme.css文件添加为外部资源。如果您想要遵循作者的默认样式,则需要该文件。或者如果你想要自己的造型,那么请继续制作你自己的造型并制作你自己的主题.css文件或其他东西。
<link rel="stylesheet" type="text/css" href="http://kenwheeler.github.io/slick/slick/slick-theme.css"/>
和这个css的可见性,
.slick-prev:before, .slick-next:before{
color:red;
}
The updted jsFiddle can be found here
此处的代码段......
$(document).ready(function() {
$('.slider').slick({
centerMode: true,
centerPadding: '60px',
dots: true,
/* Just changed this to get the bottom dots navigation */
infinite: true,
speed: 300,
slidesToShow: 4,
slidesToScroll: 1,
arrows: true
});
});
&#13;
body {
background-color: #fff;
}
.slider {
margin: 60px auto;
width: 500px;
}
div {
height: 100%;
}
p {
text-align: center;
font-size: 12px;
color: white;
}
/* added the following to give the background color of the arrows as red for visibility, the default which can be found in the slick-theme.css was white */
.slick-prev:before,
.slick-next:before {
color: red;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script><script src="http://kenwheeler.github.io/slick/slick/slick.js"></script>
<link href="http://kenwheeler.github.io/slick/slick/slick.css" rel="stylesheet"/>
<link href="http://kenwheeler.github.io/slick/slick/slick-theme.css" rel="stylesheet"/>
<div class="slider">
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/8013LN_Cat.jpg" height="100" width="100" />
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/HiddenTailor.9074B.jpg" height="100" width="100" />
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/1600ETY.JPG" height="100" width="100" />
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/VIPERPRO81.jpg" height="100" width="100" />
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/garment_bag.jpg" height="100" width="100" />
</div>
<div>
<img src="http://www.onguardapparel.com/images/products/thumb/1077.jpg" height="100" width="100" />
</div>
</div>
&#13;
希望这有帮助
答案 1 :(得分:1)
如果您已经包含了slick-theme.css并且仍然遇到问题,那是因为主题需要在子文件夹中(例如/theme/slick-theme.css),但是默认下载会将slick-theme.css放入与ajax-loader.gif相同的文件夹和从主题引用的fonts文件夹。
解决方案: 将slick-theme.css文件放在子文件夹中或编辑css,使其不再尝试查找父文件夹。您可能还需要按照Sai
的建议更改箭头的颜色答案 2 :(得分:0)
如果箭头位于白色背景上,只需在CSS中为其添加颜色,如下所示:
.slick-prev:before, .slick-next:before {
color: #09529b !important;
}
答案 3 :(得分:0)
当您没有足够的幻灯片时,可能会发现自己处于特定逻辑的情况。
例如:如果您有 4 张幻灯片,则 Infinite on true 和 slidesToShow: 4 您将永远看不到导航箭头。
只需再添加一张幻灯片即可使导航出现。
答案 4 :(得分:-1)
在 slick-theme.css
中,箭头标记为 -25px
所以请注意更改它
因为您已经为整个页面提供了 margin=0px
。