我正在使用最后一个版本的fullcalendar,我查看了文档如何改变背景颜色事件,但我不知道如何使不同的事件.
我需要
代码示例与事件红色,蓝色,绿色,像
图片.
我看到这个代码,在文档站点上,但我不能应用2种颜色:
$('#calendar').fullCalendar({
editable: true,events: [
{
title: 'Teste1',start: new Date(y,m,d,10,30),allDay: false,editable: false
},{
title: 'Teste2',11,40),allDay: false
} ],eventColor: '#378006' });
由于您使用的是最新版本(1.5),您可以设置backgroundColor
属性.
{
title: 'Teste1',editable: false,backgroundColor: '#SomeColor'
},{
title: 'Teste2',backgroundColor: '#SomeOtherColor'
}
如果需要更改,也可以设置textColor属性.
原文链接:https://www.f2er.com/js/154974.html