0

最近我一直在使用Ennui 的 Content Slider,因为它易于使用和编辑。

我不知道如何让左手箭头在最初和整个幻灯片中都出现,当你到达幻灯片结束时,右手箭头保持可见。

4

2 回答 2

0

你可以加

.cs_leftBtn, .cs_rightBtn {
    display: block !important;
    opacity: 1 !important;
}

但问题是,如果用户单击幻灯片开头的左箭头或末尾的右箭头,则在页面刷新之前,幻灯片将不再起作用。

于 2012-09-05T15:15:18.240 回答
0

您还可以删除

if(b.attr('class')=='cs_leftBtn') {
    var thisBtn = $('#'+thisInstance+' .cs_leftBtn');
    var otherBtn = $('#'+thisInstance+' .cs_rightBtn');
} else {
    var thisBtn = $('#'+thisInstance+' .cs_rightBtn');
    var otherBtn = $('#'+thisInstance+' .cs_leftBtn');
}
if(m==0||m==x) {
    thisBtn.animate({ 'opacity':'0' }, o.speed, o.easing, function() { thisBtn.hide(); });
}
if(otherBtn.css('opacity')=='0') {
    otherBtn.show().animate({ 'opacity':'1' }, { duration:o.speed, easing:o.easing });
}

和改变

.find('.cs_leftBtn')
    .css("opacity",0)
    .hide()
    .end()

.find('.cs_leftBtn')
    .hide()
    .animate({ 'width':'show' });

(js/jquery.ennui.contentslider.js)

但不知道你是否也会遇到幻灯片停止工作的问题...

于 2012-09-05T17:41:33.590 回答