2013 年 6 月 17 日から 2013 年 6 月 21 日まで、ヘッダーのテキストのサイズを制御する jquery.weekcalendar.css ファイルに CSS が見つかりません。
カレンダーを小さなスペースに詰め込む必要があるため、このコードのフォント サイズを変更したいと思います (そして 2013 を削除します)。
役立つヒントをありがとう!
JSFiddle: http://jsfiddle.net/5bBwW/ (jquery 週カレンダー css/js ファイルを CDN として取得しようとしています)。
これが私のカレンダーの初期化コードです:
$('#week-calendar').weekCalendar({
firstDayOfWeek: 1,
daysToShow: 5,
useShortDayNames: true,
showHeader: true,
timeslotsPerHour: 4,
scrollToHourMillis: 0,
businessHours:{start: 8, end: 18, limitDisplay: false },
height: function(data){
return $(window).height() - $('h1').outerHeight(true);
},
data: eventData,
eventRender : function( calEvent, $event ) {
if( calEvent.end.getTime() < new Date().getTime() ) {
$event.css( "backgroundColor", "#aaa" );
$event.css( "font-size", "1" );
$event.find( ".time" ).css( {"backgroundColor": "#999", "border":"1px solid #888" } );
}
},
eventClick : function( calEvent, $event ) {
window.location.href = 'lobby?meetingId='+calEvent.id;
},
});