Fancybox中的JScrollpane无法正常工作

时间:2012-06-09 10:24:38

标签: jquery fancybox jquery-jscrollpane

我正在使用fancybox:

http://fancyapps.com/fancybox/

滚动窗格工作不正常,只是想知道我是否在下面用代码做错了。它添加了窗格,但没有滚动条它的自我,所以我的asusming需要在fancybox之后触发,但可能是错误的我在下面做了

var scrollpane;    
$(document).ready(function() {      
    // start up the overlay
    $("a#addtatic-overlay").fancybox({
        helpers:  {
            overlay : {
                opacity: 0.35   
            }
        },
        'afterLoad' : (function(){
            //custom scroll bar
            scrollpane = $('.scroll-pane').jScrollPane();
        }),
        'afterClose' : (function(){
            scrollpane.destroy();
        })
    });

    // Slider
    $("#slidecontainer").muslider({
        "animationtype": "horizontal",
        "animationduration": 600,
        "height": 500,
        "width": 835
    });

    // Forms
    $("input, textarea, select").uniform();
});

1 个答案:

答案 0 :(得分:0)

启动fancybox时究竟发生了什么? #slidecontainer出现了吗?如果没有,请看这里:

http://fancybox.net/howto

内联示例:


<a id="inline" href="#data">This shows content of element who has id="data"</a>

<div style="display:none"><div id="data">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div></div>