我一直試圖讓滾動條中的fancybox顯示不出來。 我已經試過了解決辦法,在Fancybox inline to have no scrollbars and be 100% and 'fixed' 但我不能得到它的工作。沒有滾動條在fancybox2,並設置大小
我正在工作的人是http://home.nith.no/~setkin11/advancedsearc1.html 我希望大小設置爲常量,並且滾動條在彈出時根本不顯示。
腳本
$(document).ready(function() {
$('#smallAdvanced_container').bind('click', function(){
var container = $('#advanced_container');
if($('#advanced_container').is(':hidden')) {
$('#advanced_container').show();
$.fancybox.open([container]);
}
else {
$('#advanced_container').hide();
$.fancybox.open([container]);
}
});
//$('#advanced_container').fancybox();
});
$('#advanced_container').fancybox({
type: 'html',
width: 410,
height: 620,
autoSize : false,
autoCenter: false,
fitToView : false,
scrolling : 'no'
});
HTML
<div id="smallAdvanced_container">
<img src="ribbon.png" alt="Search ribbon">
</div>
謝謝。刪除了滾動條。雖然現在我得到的是不顯示的fancybox的全部內容,如果屏幕比它小的問題(如在其一側平板電腦)。它被切斷 – user2143903 2013-03-07 14:32:06