theme.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8' />
  5. <link rel='stylesheet' href='../node_modules/components-jqueryui/themes/cupertino/jquery-ui.css' />
  6. <link href='../dist/fullcalendar.css' rel='stylesheet' />
  7. <link href='../dist/fullcalendar.print.css' rel='stylesheet' media='print' />
  8. <script src='../node_modules/moment/moment.js'></script>
  9. <script src='../node_modules/jquery/dist/jquery.js'></script>
  10. <script src='../dist/fullcalendar.js'></script>
  11. <script>
  12. $(document).ready(function() {
  13. $('#calendar').fullCalendar({
  14. theme: true,
  15. header: {
  16. left: 'prev,next today',
  17. center: 'title',
  18. right: 'month,agendaWeek,agendaDay,listMonth'
  19. },
  20. defaultDate: '2017-05-12',
  21. navLinks: true, // can click day/week names to navigate views
  22. editable: true,
  23. eventLimit: true, // allow "more" link when too many events
  24. events: [
  25. {
  26. title: 'All Day Event',
  27. start: '2017-05-01'
  28. },
  29. {
  30. title: 'Long Event',
  31. start: '2017-05-07',
  32. end: '2017-05-10'
  33. },
  34. {
  35. id: 999,
  36. title: 'Repeating Event',
  37. start: '2017-05-09T16:00:00'
  38. },
  39. {
  40. id: 999,
  41. title: 'Repeating Event',
  42. start: '2017-05-16T16:00:00'
  43. },
  44. {
  45. title: 'Conference',
  46. start: '2017-05-11',
  47. end: '2017-05-13'
  48. },
  49. {
  50. title: 'Meeting',
  51. start: '2017-05-12T10:30:00',
  52. end: '2017-05-12T12:30:00'
  53. },
  54. {
  55. title: 'Lunch',
  56. start: '2017-05-12T12:00:00'
  57. },
  58. {
  59. title: 'Meeting',
  60. start: '2017-05-12T14:30:00'
  61. },
  62. {
  63. title: 'Happy Hour',
  64. start: '2017-05-12T17:30:00'
  65. },
  66. {
  67. title: 'Dinner',
  68. start: '2017-05-12T20:00:00'
  69. },
  70. {
  71. title: 'Birthday Party',
  72. start: '2017-05-13T07:00:00'
  73. },
  74. {
  75. title: 'Click for Google',
  76. url: 'http://google.com/',
  77. start: '2017-05-28'
  78. }
  79. ]
  80. });
  81. });
  82. </script>
  83. <style>
  84. body {
  85. margin: 40px 10px;
  86. padding: 0;
  87. font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
  88. font-size: 14px;
  89. }
  90. #calendar {
  91. max-width: 900px;
  92. margin: 0 auto;
  93. }
  94. </style>
  95. </head>
  96. <body>
  97. <div id='calendar'></div>
  98. </body>
  99. </html>