我想将fullCalendar放入指定的div空间,给它一个流畅的效果,但发现很难做到.我甚至尝试使用纵横比但没有运气….下面是我到目前为止所做的
$(window).resize(function() { var ratio = $(window).width()/$(window).height(); $('.resize').html('<div>ratio:'+ratio+'</div>'); calendar.fullCalendar('option','aspectRatio',ratio); });
解决方法
动态调整高度而不是宽高比对我有用:
启动时将日历设置为变量:
calendar = $('#calendar').fullCalendar({ height: $(window).height()*0.83,... });
然后动态调整高度(在检查已存在日历之后,为了避免初始错误消息):
if(calendar) { $(window).resize(function() { var calHeight = $(window).height()*0.83; $('#calendar').fullCalendar('option','height',calHeight); }); };
因子* 0.83取决于您的页面设计.