Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

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