jQuery Cycle2 sideshow标题文字淡出?

时间:2013-11-21 07:10:38

标签: jquery css jquery-cycle2

我正在寻找帮助以使标题文本在第2周期中淡出。我的文本在幻灯片之外,它们会消失。这里提供的答案类似,对我不起作用。这是我的幻灯片:

<div class="cycle-slideshow" 

data-cycle-fx="fade"

data-cycle-speed="slow" 

data-cycle-timeout="0" 

data-cycle-pager="#no-template-pager" 

data-cycle-pager-template=""

data-cycle-caption="#alt-caption" 

data-cycle-caption-template="{{alt}}"
>

提前致谢。

1 个答案:

答案 0 :(得分:1)

$('.cycle-slideshow').on('cycle-before', function (opts) {
    var slideshow = $(this);
    var img = slideshow.find('.banner-background').css('background-image');
    slideshow.css('background-image', img);
});

我以前回答过类似的问题:这是我的小提琴:http://jsfiddle.net/defonic/npqB5/