要自定義 FullCalendar 的視圖和布局,您需要遵循以下步驟:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FullCalendar Customization</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/5.9.0/main.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/5.9.0/main.min.js"></script>
</head>
<body>
<div id="calendar"></div>
<script src="custom.js"></script>
</body>
</html>
document.addEventListener('DOMContentLoaded', function() {
var calendarEl = document.getElementById('calendar');
var calendar = new FullCalendar.Calendar(calendarEl, {
initialView: 'dayGridMonth',
headerToolbar: {
left: 'prev,next today',
center: 'title',
right: 'dayGridMonth,timeGridWeek,timeGridDay'
},
events: [
{
title: 'Event 1',
start: '2022-01-01'
},
{
title: 'Event 2',
start: '2022-01-07',
end: '2022-01-10'
}
]
});
calendar.render();
});
initialView
:設(shè)置日歷的默認(rèn)視圖,如 'dayGridMonth'
、'timeGridWeek'
或 'timeGridDay'
。headerToolbar
:自定義日歷頂部的工具欄,包括導(dǎo)航按鈕、標(biāo)題和視圖切換按鈕。events
:添加日歷事件數(shù)據(jù),可以是靜態(tài)數(shù)據(jù)或從服務(wù)器獲取的動(dòng)態(tài)數(shù)據(jù)。editable
:設(shè)置日歷事件是否可編輯。selectable
:設(shè)置用戶(hù)是否可以選擇日期范圍以創(chuàng)建新事件。eventDisplay
:設(shè)置事件在日歷中的顯示方式,如 'block'
或 'list'
。slotDuration
:設(shè)置時(shí)間網(wǎng)格視圖中的時(shí)間間隔。更多關(guān)于 FullCalendar 的配置選項(xiàng),請(qǐng)參考官方文檔:FullCalendar 文檔。
.fc .fc-row .fc-content-skeleton {
background-color: #f0f0f0;
}
這只是一個(gè)簡(jiǎn)單的自定義示例。您可以根據(jù)需要進(jìn)行更多自定義,以滿(mǎn)足您的項(xiàng)目需求。