将动画字幕添加到猫头鹰轮播中

use*_*129 7 javascript css jquery css-transitions owl-carousel

我正在使用猫头鹰旋转木马并且一直在尝试添加动画字幕(在幻灯片显示上只是一个简单的淡入淡出)但似乎无法弄清楚如何做到这一点.

我将所有标题的不透明度设置为0,然后将一个名为"animate-me"的类(使用jQuery)添加到标题中.第一个淡入,然后所有其他都不断显示.

以下是我到目前为止在jsbin上的内容... http://jsbin.com/OGehUKEh/3/edit

Den*_*sen 6

你需要使用Owl Carousel回调.我找到了你需要的回调.

$("#owl-example").owlCarousel({
    beforeMove: function(){
        // BEFORE going to the next slide (hide captions)
    }, 
    afterMove: function(){
        // AFTER going to next slide (show captions)
    }
})
Run Code Online (Sandbox Code Playgroud)