我正在尝试将fullcalendar
调整到屏幕大小。我尝试使用css
样式,但它使它不是动态的。当用户放大/缩小或缩放%对fullcalendar
尺寸没有影响时,resize
的大小fullcalendar
本身的任何其他方式。
答案 0 :(得分:1)
Solved it.
I have referred to this link
并做了Hit & Try method
。使用以下代码,fullcalendar
会自行调整大小以适应screen
的大小。没有溢出。至少适用于谷歌浏览器。
$('#calendar').fullCalendar({
aspectRatio: 3
});
答案 1 :(得分:0)
$(window).resize(function() {
//resize just happened, pixels changed
$('#calendar').fullCalendar('option', 'height', window.innerHeight);
});
这对我有用