0

我一直试图改变我的活动的颜色,但没有成功。

我的 git-ripo 是https://github.com/mzararagoza/rails-fullcalendar-icecube并且有该站点的示例。

我正在使用看起来像 http://rails-fullcalendar-icecube.herokuapp.com/event_instances.json的 json 加载我的事件

{

    "_routes": null,
    "title": "ddd",
    "color": "#b319ab",
    "url": "/events/6",
    "start": "2013-06-12T00:00:00-05:00",
    "end": "2013-06-12T23:59:59-05:00",
    "allDay": true,
    "event_id": 6

}

感谢所有的帮助

4

2 回答 2

1

尝试为其分配一个名并在 CSS 代码块中定义该类,就像这样:

<style>    
.myCalendarEvent{
            color:#000;
            background-color:#FFF;
            border-color:#669999;   
            width: 100%;                
        }
</style>
于 2013-06-19T08:25:39.813 回答
0

要更改所有事件的颜色,推荐的方法是使用 fullCalendar 的 API:

$('#calendar').fullCalendar({
  eventColor: '#yourcolor'
});

要更改特定事件的颜色,知道它是 id:

event = $('#full-calendar').fullCalendar('clientEvents', event_id)
event.color = '#yourcolor'
$('#full-calendar').fullCalendar('updateEvent', event)
于 2015-04-07T12:14:20.407 回答