クライアントがクリックするリンクに応じて、fancybox から 2 つの異なる高さを取得しようとしていますが、何らかの理由で高さが 100% になり続けます。望む高さまで行かない
これは私のコードです
$('.fancyboxhd').fancybox({
width: 1287,
height: 720
});
$('.fancyboxsd').fancybox({
width: 640,
height: 360,
});
iFrameコンテンツです
(改善された回答については、以下の編集を参照してください)
iframeコンテンツの場合、HTMLは次のようになります。
<a class="fancyboxhd fancybox.iframe" href="hdfile.html">hd</a>
<a class="fancyboxsd fancybox.iframe" href="sdfile.html">sd</a>
次に、これら2つのオプションをスクリプトに追加します
fitToView : false,
autoSize : false
したがって、スクリプトは次のようになります。
$(document).ready(function(){
$('.fancyboxhd').fancybox({
width : 1287,
height : 720,
fitToView : false,
autoSize : false
});
$('.fancyboxsd').fancybox({
width: 640,
height: 360,
fitToView : false,
autoSize : false
});
});
###編集###:(2013年9月5日)
data-*
コードは、アンカーの(HTML5)属性を使用して改善および簡略化できclass
、次のような両方のオプションで同じです。
HTML
<a class="fancybox fancybox.iframe" data-width="1287" data-height="720" href="hdfile.html">HD</a>
<a class="fancybox fancybox.iframe" data-width="640" data-height="360" href="sdfile.html">SD</a>
JS
$('.fancybox').fancybox({
fitToView: false,
autoSize: false,
afterLoad: function () {
this.width = $(this.element).data("width");
this.height = $(this.element).data("height");
}
});
JSFIDDLEを参照してください
注:この編集の時点で、デモではfancyboxv2.1.5を使用していました。
v2.1.5 では、html 要素の id を使用してこれを使用できます。
<a id="item1" class="fancybox" href="http://fiddle.jshell.net/YtwCt/show/">Open 500x200</a>
<br />
<a id="item2" class="fancybox" href="http://fiddle.jshell.net/YtwCt/show/">Open 200x500</a>
<div id="test" style="display:none">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce pulvinar, nulla eu interdum posuere, nisi mauris cursus nisi, nec faucibus nibh urna nec turpis.
$(".fancybox-wrap").draggable();
$(".fancybox")
.attr('rel', 'gallery')
.fancybox({
type: 'iframe',
autoSize : false,
beforeLoad : function() {
if ($(this.element).attr('id') == 'item1') {
this.width = 500;
this.height = 200;
}
else {
this.width = 200;
this.height = 500;
}
}
});