我正在使用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();
});
答案 0 :(得分:0)
启动fancybox时究竟发生了什么? #slidecontainer出现了吗?如果没有,请看这里:
内联示例:
<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>