成功使用 jScrollpane 和 Colorbox 插件
有没有人设法让这两个插件一起工作:
http://www.kelvinluck .com/assets/jquery/jScrollPane/jScrollPane.html
http://colorpowered.com/colorbox/< /a>
我没有以下运气:
// Colorbox dialog window
$('.w_price_assess p.price_report > a').colorbox({
title: "Price report",
transition: "elastic",
innerWidth: "800px",
innerHeight: "699px",
opacity: "0.5",
onLoad: function() {
$('#cboxContent').jScrollPane({
showArrows: true,
scrollbarWidth: 13,
scrollbarMargin: 0
});
}
});
Has anyone managed to get these two plugins working together:
http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html
http://colorpowered.com/colorbox/
Am having no luck with the following:
// Colorbox dialog window
$('.w_price_assess p.price_report > a').colorbox({
title: "Price report",
transition: "elastic",
innerWidth: "800px",
innerHeight: "699px",
opacity: "0.5",
onLoad: function() {
$('#cboxContent').jScrollPane({
showArrows: true,
scrollbarWidth: 13,
scrollbarMargin: 0
});
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当 colorbox 完成加载内容时,我通过调用 jScrollPane 自己设法实现了这一点。
在 colorbox 中使用 onComplete 事件,而不是像上面那样使用 onLoad 事件。
I managed to achieve this myself by calling jScrollPane when colorbox had finished loading the content.
Use onComplete event in colorbox and not onLoad like above.