HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
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.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<div class="container theme-showcase">
<h1>Calendar</h1>
<div id="holder" class="row" ></div>
</div>
<script type="text/tmpl" id="tmpl">
{{
var date = date || new Date(),
month = date.getMonth(),
year = date.getFullYear(),
first = new Date(year, month, 1),
last = new Date(year, month + 1, 0),
startingDay = first.getDay(),
thedate = new Date(year, month, 1 - startingDay),
dayclass = lastmonthcss,
today = new Date(),
i, j;
if (mode === 'week') {
thedate = new Date(date);
thedate.setDate(date.getDate() - date.getDay());
first = new Date(thedate);
last = new Date(thedate);
last.setDate(last.getDate()+6);
} else if (mode === 'day') {
thedate = new Date(date);
first = new Date(thedate);
last = new Date(thedate);
last.setDate(thedate.getDate() + 1);
}
}}
<table class="calendar-table table table-condensed table-tight">
<thead>
<tr>
<td colspan="7" style="text-align: center">
<table style="white-space: nowrap; width: 100%">
<tr>
<td style="text-align: left;">
<span class="btn-group">
<button class="js-cal-prev btn btn-default"><</button>
<button class="js-cal-next btn btn-default">></button>
</span>
<button class="js-cal-option btn btn-default {{: first.toDateInt() <= today.toDateInt() && today.toDateInt() <= last.toDateInt() ? 'active':'' }}" data-date="{{: today.toISOString()}}" data-mode="month">{{: todayname }}</button>
</td>
<td>
<span class="btn-group btn-group-lg">
{{ if (mode !== 'day') { }}
{{ if (mode === 'month') { }}<button class="js-cal-option btn btn-link" data-mode="year">{{: months[month] }}</button>{{ } }}
{{ if (mode ==='week') { }}
<button class="btn btn-link disabled">{{: shortMonths[first.getMonth()] }} {{: first.getDate() }} - {{: shortMonths[last.getMonth()] }} {{: last.getDate() }}</button>
{{ } }}
<button class="js-cal-years btn btn-link">{{: year}}</button>
{{ } else { }}
<button class="btn btn-link disabled">{{: date.toDateString() }}</button>
{{ } }}
</span>
</td>
<td style="text-align: right">
<span class="btn-group">
<button class="js-cal-option btn btn-default {{: mode==='year'? 'active':'' }}" data-mode="year">Year</button>
<button class="js-cal-option btn btn-default {{: mode==='month'? 'active':'' }}" data-mode="month">Month</button>
<button class="js-cal-option btn btn-default {{: mode==='week'? 'active':'' }}" data-mode="week">Week</button>
<button class="js-cal-option btn btn-default {{: mode==='day'? 'active':'' }}" data-mode="day">Day</button>
</span>
</td>
</tr>
</table>
</td>
</tr>
</thead>
{{ if (mode ==='year') {
month = 0;
}}
<tbody>
{{ for (j = 0; j < 3; j++) { }}
<tr>
{{ for (i = 0; i < 4; i++) { }}
<td class="calendar-month month-{{:month}} js-cal-option" data-date="{{: new Date(year, month, 1).toISOString() }}" data-mode="month">
{{: months[month] }}
{{ month++;}}
</td>
{{ } }}
</tr>
{{ } }}
</tbody>
{{ } }}
{{ if (mode ==='month' || mode ==='week') { }}
<thead>
<tr class="c-weeks">
{{ for (i = 0; i < 7; i++) { }}
<th class="c-name">
{{: days[i] }}
</th>
{{ } }}
</tr>
</thead>
<tbody>
{{ for (j = 0; j < 6 && (j < 1 || mode === 'month'); j++) { }}
<tr>
{{ for (i = 0; i < 7; i++) { }}
{{ if (thedate > last) { dayclass = nextmonthcss; } else if (thedate >= first) { dayclass = thismonthcss; } }}
<td class="calendar-day {{: dayclass }} {{: thedate.toDateCssClass() }} {{: date.toDateCssClass() === thedate.toDateCssClass() ? 'selected':'' }} {{: daycss[i] }} js-cal-option" data-date="{{: thedate.toISOString() }}">
<div class="date">{{: thedate.getDate() }}</div>
{{ thedate.setDate(thedate.getDate() + 1);}}
</td>
{{ } }}
</tr>
{{ } }}
</tbody>
{{ } }}
{{ if (mode ==='day') { }}
<tbody>
<tr>
<td colspan="7">
<table class="table table-striped table-condensed table-tight-vert" >
<thead>
<tr>
<th> </th>
<th style="text-align: center; width: 100%">{{: days[date.getDay()] }}</th>
</tr>
</thead>
<tbody>
<tr>
<th class="timetitle" >All Day</th>
<td class="{{: date.toDateCssClass() }}"> </td>
</tr>
<tr>
<th class="timetitle" >Before 6 AM</th>
<td class="time-0-0"> </td>
</tr>
{{for (i = 6; i < 22; i++) { }}
<tr>
<th class="timetitle" >{{: i <= 12 ? i : i - 12 }} {{: i < 12 ? "AM" : "PM"}}</th>
<td class="time-{{: i}}-0"> </td>
</tr>
<tr>
<th class="timetitle" >{{: i <= 12 ? i : i - 12 }}:30 {{: i < 12 ? "AM" : "PM"}}</th>
<td class="time-{{: i}}-30"> </td>
</tr>
{{ } }}
<tr>
<th class="timetitle" >After 10 PM</th>
<td class="time-22-0"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
{{ } }}
</table>
</script>
<div class="container">
<hr>
<p>Resources</p>
<ul>
<li><a href="https://github.com/twbs/bootstrap">Bootstrap</a></li>
<li><a href="https://bootstrap-calendar.azurewebsites.net/index-bs3.html">another calendar</a></li>
<li><a href="http://www.bootply.com/rzNQTlDlFX">another calendar</a></li>
<li><a href="http://slipsum.com">lipsum generator</a></li>
</ul>
</div>
<div class="container">
<hr>
<p>Notes</p>
<ul>
<li>clicking on year to open and let you jump around 5ish years, don't care for current ui...</li>
<li>work needed on day mode (buggy, unfinished)</li>
<li>options missing still for classes</li>
<li>not sure about popover contents</li>
<li>? use of success state color and info state color ?</li>
<li><a href="http://www.reddit.com/r/css/comments/2gvw4n/i_refactored_my_less_to_follow_fats_guidelines/">can do better with css rules</a></li>
</ul>
</div>
@daywidth: 100px;
//from bootstrap variables:
@state-success-text: #3c763d;
@state-success-bg: #dff0d8;
@state-info-text: #31708f;
@state-info-bg: #d9edf7;
//@state-warning-text: #8a6d3b;
//@state-warning-bg: #fcf8e3;
//@state-danger-text: #a94442;
//@state-danger-bg: #f2dede;
.calendar-day {
width: @daywidth;
min-width: @daywidth;
max-width: @daywidth;
height: 80px;
}
.calendar-table { margin: 0 auto; width: @daywidth * 7;}
.selected { background-color: #eee;}
.outside .date {color: #ccc; }
.timetitle {
white-space: nowrap;
text-align: right;
}
.colors(@color, @text) {
@top: @color;
@border: darken(@color, 15%);
@bottom: darken(@color, 7.5%);
border-top: 1px solid @border;
border-bottom: 1px solid @border;
background-image: linear-gradient(to bottom, @top 0px, @bottom 100%);
background-repeat: repeat-x;
color: @text;
border-width: 1px;
&.begin {
border-left: 1px solid @border;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px; }
&.end {
border-right: 1px solid @border;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
}
.event {
.colors(@state-success-bg, @state-success-text);
font-size: .75em;
padding: 0 .75em;
line-height: 2em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 1px;
&.all-day { .colors(@state-info-bg, @state-info-text); }
&.clear { background: none; border: 1px solid transparent; }
}
.cell-styles(@ruleset) {
& > thead > tr, & > tbody > tr, & > tfoot > tr {
& > th, & > td {
@ruleset();
}
}
}
.table-tight {
.cell-styles({ padding-left: 0; padding-right: 0; });
}
.table-tight-vert {
.cell-styles({ padding-top: 0; padding-bottom: 0; });
}
var $currentPopover = null;
$(document).on('shown.bs.popover', function (ev) {
var $target = $(ev.target);
if ($currentPopover && ($currentPopover.get(0) != $target.get(0))) {
$currentPopover.popover('toggle');
}
$currentPopover = $target;
}).on('hidden.bs.popover', function (ev) {
var $target = $(ev.target);
if ($currentPopover && ($currentPopover.get(0) == $target.get(0))) {
$currentPopover = null;
}
});
//quicktmpl is a simple template language I threw together a while ago; it is not remotely secure to xss and probably has plenty of bugs that I haven't considered, but it basically works
//the design is a function I read in a blog post by John Resig (http://ejohn.org/blog/javascript-micro-templating/) and it is intended to be loosely translateable to a more comprehensive template language like mustache easily
$.extend({
quicktmpl: function (template) {return new Function("obj","var p=[],print=function(){p.push.apply(p,arguments);};with(obj){p.push('"+template.replace(/[\r\t\n]/g," ").split("{{").join("\t").replace(/((^|\}\})[^\t]*)'/g,"$1\r").replace(/\t:(.*?)\}\}/g,"',$1,'").split("\t").join("');").split("}}").join("p.push('").split("\r").join("\\'")+"');}return p.join('');")}
});
$.extend(Date.prototype, {
//provides a string that is _year_month_day, intended to be widely usable as a css class
toDateCssClass: function () {
return '_' + this.getFullYear() + '_' + (this.getMonth() + 1) + '_' + this.getDate();
},
//this generates a number useful for comparing two dates;
toDateInt: function () {
return ((this.getFullYear()*12) + this.getMonth())*32 + this.getDate();
},
toTimeString: function() {
var hours = this.getHours(),
minutes = this.getMinutes(),
hour = (hours > 12) ? (hours - 12) : hours,
ampm = (hours >= 12) ? ' pm' : ' am';
if (hours === 0 && minutes===0) { return ''; }
if (minutes > 0) {
return hour + ':' + minutes + ampm;
}
return hour + ampm;
}
});
(function ($) {
//t here is a function which gets passed an options object and returns a string of html. I am using quicktmpl to create it based on the template located over in the html block
var t = $.quicktmpl($('#tmpl').get(0).innerHTML);
function calendar($el, options) {
//actions aren't currently in the template, but could be added easily...
$el.on('click', '.js-cal-prev', function () {
switch(options.mode) {
case 'year': options.date.setFullYear(options.date.getFullYear() - 1); break;
case 'month': options.date.setMonth(options.date.getMonth() - 1); break;
case 'week': options.date.setDate(options.date.getDate() - 7); break;
case 'day': options.date.setDate(options.date.getDate() - 1); break;
}
draw();
}).on('click', '.js-cal-next', function () {
switch(options.mode) {
case 'year': options.date.setFullYear(options.date.getFullYear() + 1); break;
case 'month': options.date.setMonth(options.date.getMonth() + 1); break;
case 'week': options.date.setDate(options.date.getDate() + 7); break;
case 'day': options.date.setDate(options.date.getDate() + 1); break;
}
draw();
}).on('click', '.js-cal-option', function () {
var $t = $(this), o = $t.data();
if (o.date) { o.date = new Date(o.date); }
$.extend(options, o);
draw();
}).on('click', '.js-cal-years', function () {
var $t = $(this),
haspop = $t.data('popover'),
s = '',
y = options.date.getFullYear() - 2,
l = y + 5;
if (haspop) { return true; }
for (; y < l; y++) {
s += '<button type="button" class="btn btn-default btn-lg btn-block js-cal-option" data-date="' + (new Date(y, 1, 1)).toISOString() + '" data-mode="year">'+y + '</button>';
}
$t.popover({content: s, html: true, placement: 'auto top'}).popover('toggle');
return false;
}).on('click', '.event', function () {
var $t = $(this),
index = +($t.attr('data-index')),
haspop = $t.data('popover'),
data, time;
if (haspop || isNaN(index)) { return true; }
data = options.data[index];
time = data.start.toTimeString();
if (time && data.end) { time = time + ' - ' + data.end.toTimeString(); }
$t.data('popover',true);
$t.popover({content: '<p><strong>' + time + '</strong></p>'+data.text, html: true, placement: 'auto left'}).popover('toggle');
return false;
});
function dayAddEvent(index, event) {
if (!!event.allDay) {
monthAddEvent(index, event);
return;
}
var $event = $('<div/>', {'class': 'event', text: event.title, title: event.title, 'data-index': index}),
start = event.start,
end = event.end || start,
time = event.start.toTimeString(),
hour = start.getHours(),
timeclass = '.time-22-0',
startint = start.toDateInt(),
dateint = options.date.toDateInt(),
endint = end.toDateInt();
if (startint > dateint || endint < dateint) { return; }
if (!!time) {
$event.html('<strong>' + time + '</strong> ' + $event.html());
}
$event.toggleClass('begin', startint === dateint);
$event.toggleClass('end', endint === dateint);
if (hour < 6) {
timeclass = '.time-0-0';
}
if (hour < 22) {
timeclass = '.time-' + hour + '-' + (start.getMinutes() < 30 ? '0' : '30');
}
$(timeclass).append($event);
}
function monthAddEvent(index, event) {
var $event = $('<div/>', {'class': 'event', text: event.title, title: event.title, 'data-index': index}),
e = new Date(event.start),
dateclass = e.toDateCssClass(),
day = $('.' + e.toDateCssClass()),
empty = $('<div/>', {'class':'clear event', html:' '}),
numbevents = 0,
time = event.start.toTimeString(),
endday = event.end && $('.' + event.end.toDateCssClass()).length > 0,
checkanyway = new Date(e.getFullYear(), e.getMonth(), e.getDate()+40),
existing,
i;
$event.toggleClass('all-day', !!event.allDay);
if (!!time) {
$event.html('<strong>' + time + '</strong> ' + $event.html());
}
if (!event.end) {
$event.addClass('begin end');
$('.' + event.start.toDateCssClass()).append($event);
return;
}
while (e <= event.end && (day.length || endday || options.date < checkanyway)) {
if(day.length) {
existing = day.find('.event').length;
numbevents = Math.max(numbevents, existing);
for(i = 0; i < numbevents - existing; i++) {
day.append(empty.clone());
}
day.append(
$event.
toggleClass('begin', dateclass === event.start.toDateCssClass()).
toggleClass('end', dateclass === event.end.toDateCssClass())
);
$event = $event.clone();
$event.html(' ');
}
e.setDate(e.getDate() + 1);
dateclass = e.toDateCssClass();
day = $('.' + dateclass);
}
}
function yearAddEvents(events, year) {
var counts = [0,0,0,0,0,0,0,0,0,0,0,0];
$.each(events, function (i, v) {
if (v.start.getFullYear() === year) {
counts[v.start.getMonth()]++;
}
});
$.each(counts, function (i, v) {
if (v!==0) {
$('.month-'+i).append('<span class="badge">'+v+'</span>');
}
});
}
function draw() {
$el.html(t(options));
//potential optimization (untested), this object could be keyed into a dictionary on the dateclass string; the object would need to be reset and the first entry would have to be made here
$('.' + (new Date()).toDateCssClass()).addClass('today');
if (options.data && options.data.length) {
if (options.mode === 'year') {
yearAddEvents(options.data, options.date.getFullYear());
} else if (options.mode === 'month' || options.mode === 'week') {
$.each(options.data, monthAddEvent);
} else {
$.each(options.data, dayAddEvent);
}
}
}
draw();
}
;(function (defaults, $, window, document) {
$.extend({
calendar: function (options) {
return $.extend(defaults, options);
}
}).fn.extend({
calendar: function (options) {
options = $.extend({}, defaults, options);
return $(this).each(function () {
var $this = $(this);
calendar($this, options);
});
}
});
})({
days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
shortMonths: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
date: (new Date()),
daycss: ["c-sunday", "", "", "", "", "", "c-saturday"],
todayname: "Today",
thismonthcss: "current",
lastmonthcss: "outside",
nextmonthcss: "outside",
mode: "month",
data: []
}, jQuery, window, document);
})(jQuery);
var data = [],
date = new Date(),
d = date.getDate(),
d1 = d,
m = date.getMonth(),
y = date.getFullYear(),
i,
end,
j,
c = 1063,
c1 = 3329,
h,
m,
names = ['All Day Event', 'Long Event', 'Birthday Party', 'Repeating Event', 'Training', 'Meeting', 'Mr. Behnke', 'Date', 'Ms. Tubbs'],
slipsum = ["Now that we know who you are, I know who I am. I'm not a mistake! It all makes sense! In a comic, you know how you can tell who the arch-villain's going to be? He's the exact opposite of the hero. And most times they're friends, like you and me! I should've known way back when... You know why, David? Because of the kids. They called me Mr Glass.", "You see? It's curious. Ted did figure it out - time travel. And when we get back, we gonna tell everyone. How it's possible, how it's done, what the dangers are. But then why fifty years in the future when the spacecraft encounters a black hole does the computer call it an 'unknown entry event'? Why don't they know? If they don't know, that means we never told anyone. And if we never told anyone it means we never made it back. Hence we die down here. Just as a matter of deductive logic.", "Your bones don't break, mine do. That's clear. Your cells react to bacteria and viruses differently than mine. You don't get sick, I do. That's also clear. But for some reason, you and I react the exact same way to water. We swallow it too fast, we choke. We get some in our lungs, we drown. However unreal it may seem, we are connected, you and I. We're on the same curve, just on opposite ends.", "Well, the way they make shows is, they make one show. That show's called a pilot. Then they show that show to the people who make shows, and on the strength of that one show they decide if they're going to make more shows. Some pilots get picked and become television programs. Some don't, become nothing. She starred in one of the ones that became nothing.", "Yeah, I like animals better than people sometimes... Especially dogs. Dogs are the best. Every time you come home, they act like they haven't seen you in a year. And the good thing about dogs... is they got different dogs for different people. Like pit bulls. The dog of dogs. Pit bull can be the right man's best friend... or the wrong man's worst enemy. You going to give me a dog for a pet, give me a pit bull. Give me... Raoul. Right, Omar? Give me Raoul.", "Like you, I used to think the world was this great place where everybody lived by the same standards I did, then some kid with a nail showed me I was living in his world, a world where chaos rules not order, a world where righteousness is not rewarded. That's Cesar's world, and if you're not willing to play by his rules, then you're gonna have to pay the price.", "You think water moves fast? You should see ice. It moves like it has a mind. Like it knows it killed the world once and got a taste for murder. After the avalanche, it took us a week to climb out. Now, I don't know exactly when we turned on each other, but I know that seven of us survived the slide... and only five made it out. Now we took an oath, that I'm breaking now. We said we'd say it was the snow that killed the other two, but it wasn't. Nature is lethal but it doesn't hold a candle to man.", "You see? It's curious. Ted did figure it out - time travel. And when we get back, we gonna tell everyone. How it's possible, how it's done, what the dangers are. But then why fifty years in the future when the spacecraft encounters a black hole does the computer call it an 'unknown entry event'? Why don't they know? If they don't know, that means we never told anyone. And if we never told anyone it means we never made it back. Hence we die down here. Just as a matter of deductive logic.", "Like you, I used to think the world was this great place where everybody lived by the same standards I did, then some kid with a nail showed me I was living in his world, a world where chaos rules not order, a world where righteousness is not rewarded. That's Cesar's world, and if you're not willing to play by his rules, then you're gonna have to pay the price.", "You think water moves fast? You should see ice. It moves like it has a mind. Like it knows it killed the world once and got a taste for murder. After the avalanche, it took us a week to climb out. Now, I don't know exactly when we turned on each other, but I know that seven of us survived the slide... and only five made it out. Now we took an oath, that I'm breaking now. We said we'd say it was the snow that killed the other two, but it wasn't. Nature is lethal but it doesn't hold a candle to man."];
for(i = 0; i < 500; i++) {
j = Math.max(i % 15 - 10, 0);
//c and c1 jump around to provide an illusion of random data
c = (c * 1063) % 1061;
c1 = (c1 * 3329) % 3331;
d = (d1 + c + c1) % 839 - 440;
h = i % 36;
m = (i % 4) * 15;
if (h < 18) { h = 0; m = 0; } else { h = Math.max(h - 24, 0) + 8; }
end = !j ? null : new Date(y, m, d + j, h + 2, m);
data.push({ title: names[c1 % names.length], start: new Date(y, m, d, h, m), end: end, allDay: !(i % 6), text: slipsum[c % slipsum.length ] });
}
data.sort(function(a,b) { return (+a.start) - (+b.start); });
//data must be sorted by start date
//Actually do everything
$('#holder').calendar({
data: data
});
Also see: Tab Triggers