如何限制ColorBox的最大大小?
jQuery(document).bind('cbox_open', function(){
jQuery.colorbox.maxWidth = '90%';
jQuery.colorbox.maxHeight = '90%';
});
此代码无效。((
答案 0 :(得分:0)
使用Scalephotos
如果为true,并且已定义maxWidth,maxHeight,innerWidth,innerHeight,width或height,Colorbox将缩放照片以适合这些值。
$("a.gallery").colorbox({rel: 'gal', scalephotos:true title: function(){
var url = $(this).attr('href');
return '<a href="' + url + '" target="_blank">Open In New Window</a>';
}});