%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/cwd/html/ppaobm/vendor/bower-asset/fullcalendar/demos/ |
Upload File : |
<!DOCTYPE html> <html> <head> <meta charset='utf-8' /> <link href='../dist/core/main.css' rel='stylesheet' /> <link href='../dist/daygrid/main.css' rel='stylesheet' /> <link href='../dist/timegrid/main.css' rel='stylesheet' /> <link href='../dist/list/main.css' rel='stylesheet' /> <script src='../dist/core/main.js'></script> <script src='../dist/interaction/main.js'></script> <script src='../dist/daygrid/main.js'></script> <script src='../dist/timegrid/main.js'></script> <script src='../dist/list/main.js'></script> <script> document.addEventListener('DOMContentLoaded', function() { var calendarEl = document.getElementById('calendar'); var calendar = new FullCalendar.Calendar(calendarEl, { plugins: [ 'interaction', 'dayGrid', 'timeGrid', 'list' ], header: { left: 'prev,next today', center: 'title', right: 'dayGridMonth,timeGridWeek,timeGridDay,listMonth' }, defaultDate: '2019-04-12', navLinks: true, // can click day/week names to navigate views businessHours: true, // display business hours editable: true, events: [ { title: 'Business Lunch', start: '2019-04-03T13:00:00', constraint: 'businessHours' }, { title: 'Meeting', start: '2019-04-13T11:00:00', constraint: 'availableForMeeting', // defined below color: '#257e4a' }, { title: 'Conference', start: '2019-04-18', end: '2019-04-20' }, { title: 'Party', start: '2019-04-29T20:00:00' }, // areas where "Meeting" must be dropped { groupId: 'availableForMeeting', start: '2019-04-11T10:00:00', end: '2019-04-11T16:00:00', rendering: 'background' }, { groupId: 'availableForMeeting', start: '2019-04-13T10:00:00', end: '2019-04-13T16:00:00', rendering: 'background' }, // red areas where no events can be dropped { start: '2019-04-24', end: '2019-04-28', overlap: false, rendering: 'background', color: '#ff9f89' }, { start: '2019-04-06', end: '2019-04-08', overlap: false, rendering: 'background', color: '#ff9f89' } ] }); calendar.render(); }); </script> <style> body { margin: 40px 10px; padding: 0; font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size: 14px; } #calendar { max-width: 900px; margin: 0 auto; } </style> </head> <body> <div id='calendar'></div> </body> </html>