如何限制ColorBox的最大大小?
jQuery(document).bind('cbox_open', function(){
jQuery.colorbox.maxWidth = '90%';
jQuery.colorbox.maxHeight = '90%';
});此代码不起作用。
发布于 2015-09-28 06:59:57
使用Scalephotos
如果是真的,而且如果已经定义了maxWidth、maxHeight、innerWidth、innerHeight、宽度或高度,则颜色盒将缩放照片以适应这些值。
$("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>';
}});https://stackoverflow.com/questions/32817250
复制相似问题