web-component.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8' />
  5. <script src='../../packages/core/dist/index.global.js'></script>
  6. <script src='../../packages/web-component/dist/index.global.js'></script>
  7. <script src='../../packages/interaction/dist/index.global.js'></script>
  8. <script src='../../packages/daygrid/dist/index.global.js'></script>
  9. <script src='../../packages/timegrid/dist/index.global.js'></script>
  10. <script src='../../packages/list/dist/index.global.js'></script>
  11. <style>
  12. body {
  13. margin: 0;
  14. padding: 0;
  15. font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  16. font-size: 14px;
  17. }
  18. #calendar-container {
  19. max-width: 1100px;
  20. margin: 40px auto;
  21. padding: 0 10px;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div id='calendar-container'>
  27. <full-calendar shadow options='{
  28. "headerToolbar": {
  29. "left": "prev,next today",
  30. "center": "title",
  31. "right": "dayGridMonth,timeGridWeek,timeGridDay,listWeek"
  32. },
  33. "initialDate": "2023-01-12",
  34. "editable": true,
  35. "selectable": true,
  36. "businessHours": true,
  37. "dayMaxEvents": true,
  38. "events": [
  39. {
  40. "title": "All Day Event",
  41. "start": "2023-01-01"
  42. },
  43. {
  44. "title": "Long Event",
  45. "start": "2023-01-07",
  46. "end": "2023-01-10"
  47. },
  48. {
  49. "groupId": 999,
  50. "title": "Repeating Event",
  51. "start": "2023-01-09T16:00:00"
  52. },
  53. {
  54. "groupId": 999,
  55. "title": "Repeating Event",
  56. "start": "2023-01-16T16:00:00"
  57. },
  58. {
  59. "title": "Conference",
  60. "start": "2023-01-11",
  61. "end": "2023-01-13"
  62. },
  63. {
  64. "title": "Meeting",
  65. "start": "2023-01-12T10:30:00",
  66. "end": "2023-01-12T12:30:00"
  67. },
  68. {
  69. "title": "Lunch",
  70. "start": "2023-01-12T12:00:00"
  71. },
  72. {
  73. "title": "Meeting",
  74. "start": "2023-01-12T14:30:00"
  75. },
  76. {
  77. "title": "Happy Hour",
  78. "start": "2023-01-12T17:30:00"
  79. },
  80. {
  81. "title": "Dinner",
  82. "start": "2023-01-12T20:00:00"
  83. },
  84. {
  85. "title": "Birthday Party",
  86. "start": "2023-01-13T07:00:00"
  87. },
  88. {
  89. "title": "Click for Google",
  90. "url": "http://google.com/",
  91. "start": "2023-01-28"
  92. }
  93. ]
  94. }' />
  95. </div>
  96. </body>
  97. </html>