Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div id='calendar'></div>
              
            
!

CSS

              
                html, body {
  margin: 0;
  padding: 0;
  font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
  font-size: 14px;
}

#calendar {
  max-width: 900px;
  margin: 40px auto;
}

#calendar a.fc-event {
  color: #fff; /*los estilos predeterminados de bootstrap lo hacen negro. deshacer  */
}
              
            
!

JS

              
                $(document).ready(function() {		
	 $('#calendar').fullCalendar({           			header: {				
			left: 'prev,next today',
			center: 'title',
			right: 'month,basicWeek,basicDay',			 
		},
		locale: 'es',
		 monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
		monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun','Jul','Ago','Sep','Oct','Nov','Dic'],
		dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'],
		dayNamesShort: ['Dom','Lun','Mar','Mié','Jue','Vie','Sáb'],		
                                
  // --- inicio  eventos cintillos
 
events: [
    {
      //Titulo del Evento
      title  : 'event1',   
      // Fecha Inicial del evento (año-mes-dia)
      start  : '2019-08-13'  
    },
    {
      //Titulo del Evento
      title  : 'event2',      
    // Fecha Inicial del evento (año-mes-dia) 
      start  : '2010-08-05',  
     // Fecha Final del evento 
      end    : '2019-08-07'   
    },
    {
      title  : 'event3',
      start  : '2019-08-09T12:30:00',
         // Desactiva el evento que se realiza todo el dia 
         //pero devemos poner la hora al inico del evento
      allDay : false 
    }
  ]
                                
   //  --- Fin Eventos cintillos
                                
		});		 // full calendar		
  
   
  
  
	});  // function
              
            
!
999px

Console