gpt4 book ai didi

jquery - FullCalendar 调整大小时修改标题

转载 作者:行者123 更新时间:2023-12-01 01:07:34 31 4
gpt4 key购买 nike

我正在使用FullCalendar我试图通过在窗口大小低于特定大小时更改 View 来使其响应:

windowResize : function(view) {
if ($(window).width() < 500) {
$('#calendar').fullCalendar('changeView', 'basicDay');
} else {
$('#calendar').fullCalendar('changeView', 'month');
}
// modify the header (remove options for month and week and remove title)
}

这工作正常,但我如何修改标题(删除月份和星期的选项并删除标题)?您可以查看日历 here 的示例。

标题设置如下:

$('#calendar').fullCalendar({
header : {
left : 'prev,next today',
center : 'title',
right : 'month,basicWeek,basicDay'
}
});

最佳答案

我也需要一个响应式脚本,但我得到的最好的是:

var view = 'month';
var header = {
left : "title",
center : "",
right : "prev,next month,basicWeek,basicDay today"
};
if ($(window).width() <= 480) {
view = 'basicDay';
header = {
left : 'prev,next today',
center : '',
right : ''
};
}
var acalendar = $("#ccalendar").fullCalendar(
{
lang : "pt-BR",
defaultView : view,
header : header
}

也许您可以在调整大小时重建日历。

关于jquery - FullCalendar 调整大小时修改标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20666130/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com