我已经为我的项目定制了fullcalendar插件,看起来像这个月。如您所见,空日期的高度与date's with the Events
的高度相同。我想要的是,本月查看without any event day should be small.
我现在使用纵横比设置了天数。请指导我。谢谢你欢呼...
这是对我特别感谢@adyson的帮助和建议的答案。
var calHeight = function() {
$('#calendar').find('.fc-row').each(function() {
var ogHeigth = '';
if ($(this).find('.fc-event-container').length > '0') {
ogHeigth = $(this).outerHeight();
}
if ($(this).find('.fc-event-container').length == '0') {
$(this).css('height', ogHeigth - ogHeigth / 3);
}
});
}
我将此功能放在完整日历中的所有功能中,以便每当添加,更新或删除事件,更改日期等时运行。它对我有用。希望这对你们有帮助。ty