0

我使用来自以下的fancybox:

http://fancyapps.com/fancybox/

并且滚动窗格无法正常工作,只是想知道我在下面的代码中是否做错了什么。它添加了窗格,但没有添加它自己的滚动条,所以我假设需要在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();
});
4

1 回答 1

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>

于 2012-06-09T11:07:18.417 回答