132 lines
3.6 KiB
HTML
132 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8' />
|
|
|
|
<script src='../../packages/core/dist/index.global.js'></script>
|
|
<script src='../../packages/interaction/dist/index.global.js'></script>
|
|
<script src='../../packages/daygrid/dist/index.global.js'></script>
|
|
<script src='../../packages/timegrid/dist/index.global.js'></script>
|
|
<script src='../../packages/list/dist/index.global.js'></script>
|
|
<script src='../../packages/multimonth/dist/index.global.js'></script>
|
|
<script src='../../packages/bootstrap5/dist/index.global.js'></script>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
|
|
|
<script>
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
var calendarEl = document.getElementById('calendar');
|
|
|
|
var calendar = new FullCalendar.Calendar(calendarEl, {
|
|
customButtons: {
|
|
myCustomButton: {
|
|
icon: 'bell',
|
|
click: function() {
|
|
alert('clicked the custom button!');
|
|
}
|
|
}
|
|
},
|
|
headerToolbar: {
|
|
left: 'prevYear,prev,today,next,nextYear myCustomButton',
|
|
center: 'title',
|
|
right: 'multiMonthYear,dayGridMonth,timeGridWeek,listMonth'
|
|
},
|
|
themeSystem: 'bootstrap5',
|
|
// buttonIcons: {
|
|
// close: 'x-octagon',
|
|
// prev: 'arrow-left-circle-fill',
|
|
// next: 'arrow-right-circle-fill',
|
|
// prevYear: 'arrow-return-left',
|
|
// nextYear: 'arrow-return-right'
|
|
// },
|
|
initialDate: '2014-08-12',
|
|
editable: true,
|
|
dayMaxEvents: true, // allow "more" link when too many events
|
|
navLinks: true,
|
|
events: [
|
|
{
|
|
title: 'All Day Event',
|
|
start: '2014-08-01'
|
|
},
|
|
{
|
|
title: 'Long Event',
|
|
start: '2014-08-07',
|
|
end: '2014-08-10'
|
|
},
|
|
{
|
|
groupId: 999,
|
|
title: 'Repeating Event',
|
|
start: '2014-08-09T16:00:00'
|
|
},
|
|
{
|
|
groupId: 999,
|
|
title: 'Repeating Event',
|
|
start: '2014-08-16T16:00:00'
|
|
},
|
|
{
|
|
title: 'Conference',
|
|
start: '2014-08-11',
|
|
end: '2014-08-13'
|
|
},
|
|
{
|
|
title: 'Meeting',
|
|
start: '2014-08-12T10:30:00',
|
|
end: '2014-08-12T12:30:00'
|
|
},
|
|
{
|
|
title: 'Lunch',
|
|
start: '2014-08-12T12:00:00'
|
|
},
|
|
{
|
|
title: 'Meeting',
|
|
start: '2014-08-12T14:30:00'
|
|
},
|
|
{
|
|
title: 'Happy Hour',
|
|
start: '2014-08-12T17:30:00'
|
|
},
|
|
{
|
|
title: 'Dinner',
|
|
start: '2014-08-12T20:00:00'
|
|
},
|
|
{
|
|
title: 'Birthday Party',
|
|
start: '2014-08-13T07:00:00'
|
|
},
|
|
{
|
|
title: 'Click for Google',
|
|
url: 'http://google.com/',
|
|
start: '2014-08-28'
|
|
}
|
|
]
|
|
});
|
|
|
|
calendar.render();
|
|
});
|
|
|
|
</script>
|
|
<style>
|
|
|
|
body {
|
|
margin: 40px 10px;
|
|
padding: 0;
|
|
font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
#calendar {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id='calendar'></div>
|
|
|
|
</body>
|
|
</html>
|