fitToView
与minWidth
、minHeight
和maxWidth
一起使用maxHeight
来设置您的后备大小,例如:
$(".fancybox")
.attr('rel', 'gallery')
.fancybox({
type: 'iframe',
autoSize : false,
beforeLoad : function() {
this.width = parseInt(this.href.match(/width=[0-9]+/i)[0].replace('width=',''));
this.height = parseInt(this.href.match(/height=[0-9]+/i)[0].replace('height=',''));
},
// fallback size
fitToView: false, // set the specific size without scaling to the view port
minWidth : 200, // or whatever, default is 100
minHeight: 300, // default 100
maxWidth : 800, // default 9999
maxHeight: 900 // default 9999
});
另一方面,为了避免人们弄乱 url 的问题,您可以使用 (HTML5)data-*
属性来传递这些值,例如:
<a class="fancybox" href="http://fiddle.jshell.net/YtwCt/show/" data-width="500" data-height="200">Open 500x200</a>
...更清洁。然后在你的fancybox中在回调中相应地设置大小,比如
beforeShow: function () {
this.width = $(this.element).data("width") ? $(this.element).data("width") : null;
this.height = $(this.element).data("height") ? $(this.element).data("height") : null;
}
检查此JSFIDDLE,第一个链接具有data-*
属性并相应地获取大小。第二个不会根据后备值获取大小