flexslider和jquery工具叠加 - 访问滑块对象

时间:2012-04-17 10:13:59

标签: javascript jquery flexslider

我在flexslider

中使用jquery tools overlay

我想访问show上的滑块并隐藏叠加层。

var slideToJumpTo  = 5; //this changes
var modals = ({
init: function(){
    $("div[rel]").overlay({         
        onBeforeLoad: function() {
                    //I want to be able to access the flexslider here.
                    //So I can do something like $('slider').jumpToSlide(slideToJumpTo) - dummy code
        },
        onLoad: function() {        
            $.getScript('/js/libs/jquery.flexslider-min.js', function() {
                if ($('.overlay-carousel').length > 0) {
                    $('.overlay-carousel').flexslider({

                    });
                }
            });             
        },
        onClose:function(){

        }
    });
}
});

我应该如何引用滑块?

0 个答案:

没有答案