2013-11-21 116 views
1

我正在尋找幫助,讓標題文本在第2週期中淡入淡出。我的文本位於幻燈片之外,它們會淡入淡出。這裏提供的類似的答案不適合我。這裏是我的幻燈片:jQuery Cycle2 sideshow標題文字淡入淡出?

<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
$('.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/