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 に答える