有没有一种简单的方法可以根据 FullCalendar 中的当前视口大小为用户更改视图?
我想做的是在桌面上查看月视图,如果使用 iPhone 或移动设备,则查看日视图。目前,通过月视图,所有事件都在移动设备上压缩。
当前代码:
$(document).ready(function() {
$("#primary #calendar").fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
timeFormat: 'h(:mm)tt',
eventSources: [
{
url: 'http://www.google.com/mycal1',
color: 'blue',
textColor: 'white'
},
{
url: 'http://www.google.com/mycal2',
color: 'white',
textColor: 'black'
}
]
})
});