48 lines
1 KiB
HTML
48 lines
1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<link href='../../dist/fullcalendar.css' rel='stylesheet' />
|
||
|
<link href='../../dist/fullcalendar.print.css' rel='stylesheet' media='print' />
|
||
|
<script src='../../node_modules/jquery/dist/jquery.js'></script>
|
||
|
<script src='../../node_modules/moment/moment.js'></script>
|
||
|
<script src='../../dist/fullcalendar.js'></script>
|
||
|
<script>
|
||
|
|
||
|
$(document).ready(function() {
|
||
|
|
||
|
$('#calendar').fullCalendar({
|
||
|
headerToolbar: {
|
||
|
left: 'prev,next today',
|
||
|
center: 'title',
|
||
|
right: 'month,week,dayGridWeek,day,dayGridDay'
|
||
|
},
|
||
|
year: 2015,
|
||
|
month: 0,
|
||
|
date: 31
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
</script>
|
||
|
<style>
|
||
|
|
||
|
body {
|
||
|
margin-top: 40px;
|
||
|
text-align: center;
|
||
|
font-size: 13px;
|
||
|
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
|
||
|
}
|
||
|
|
||
|
#calendar {
|
||
|
width: 900px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<button onclick="$('#calendar').fullCalendar('gotoDate', 2015, 1)">gotoDate - feb 2015</button>
|
||
|
<div id='calendar'></div>
|
||
|
</body>
|
||
|
</html>
|