theme.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8' />
  5. <link rel='stylesheet' href='../lib/cupertino/jquery-ui.min.css' />
  6. <link href='../fullcalendar.css' rel='stylesheet' />
  7. <link href='../fullcalendar.print.css' rel='stylesheet' media='print' />
  8. <script src='../lib/moment.min.js'></script>
  9. <script src='../lib/jquery.min.js'></script>
  10. <script src='../lib/jquery-ui.custom.min.js'></script>
  11. <script src='../fullcalendar.min.js'></script>
  12. <script>
  13. $(document).ready(function() {
  14. $('#calendar').fullCalendar({
  15. theme: true,
  16. header: {
  17. left: 'prev,next today',
  18. center: 'title',
  19. right: 'month,agendaWeek,agendaDay'
  20. },
  21. defaultDate: '2014-06-12',
  22. editable: true,
  23. events: [
  24. {
  25. title: 'All Day Event',
  26. start: '2014-06-01'
  27. },
  28. {
  29. title: 'Long Event',
  30. start: '2014-06-07',
  31. end: '2014-06-10'
  32. },
  33. {
  34. id: 999,
  35. title: 'Repeating Event',
  36. start: '2014-06-09T16:00:00'
  37. },
  38. {
  39. id: 999,
  40. title: 'Repeating Event',
  41. start: '2014-06-16T16:00:00'
  42. },
  43. {
  44. title: 'Meeting',
  45. start: '2014-06-12T10:30:00',
  46. end: '2014-06-12T12:30:00'
  47. },
  48. {
  49. title: 'Lunch',
  50. start: '2014-06-12T12:00:00'
  51. },
  52. {
  53. title: 'Birthday Party',
  54. start: '2014-06-13T07:00:00'
  55. },
  56. {
  57. title: 'Click for Google',
  58. url: 'http://google.com/',
  59. start: '2014-06-28'
  60. }
  61. ]
  62. });
  63. });
  64. </script>
  65. <style>
  66. body {
  67. margin: 0;
  68. padding: 0;
  69. font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
  70. font-size: 14px;
  71. }
  72. #calendar {
  73. width: 900px;
  74. margin: 40px auto;
  75. }
  76. </style>
  77. </head>
  78. <body>
  79. <div id='calendar'></div>
  80. </body>
  81. </html>