<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script><div class="u-start">
<div class="u-start-header">
<div class="u-start-prev" onclick="Start.prevMonth();"><<</div>
<div class="u-start-date">
<strong>Start Calander</strong>
<span><em class="u-start-year"></em>-<em class="u-start-month"></em></span>
</div>
<div class="u-start-next" onclick="Start.nextMonth();">>></div>
</div>
<table class="u-start-body"></table>
<div class="u-start-footer"></div>
</div>
var Start = {
/**
* @desc : switch direction
*/
dir:'right',
/**
* @func : initilize
* @param : year
* @param : month
*/
init:function(year, month){
month -= 1;
var dayCount = [31, (this.isLeap(year) ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31],
date = new Date(year, month, 1),
currentDay = date.getDay(),
indentCell = 0,
allCell = 43,
dayStart = 0;
for(var i = 0; i < 7; i++){
dayStart == 7 && (dayStart = 0);
dayStart == currentDay && (indentCell = i);
dayStart++;
}
var validCell = indentCell + dayCount[month];
this.createFrame(year, month, validCell, indentCell, allCell);
this.selectDay();
},
/**
* @func : Skeleton
* @param : year
* @param : month
* @param : validCell
* @param : indentCell
* @param : allCell
*/
createFrame:function(year, month, validCell, indentCell, allCell){
var tbody = '<tr class="ui-animated ui-animated-'+this.dir+'">',
thead = '<thead><tr><th>Sun</th><th>Mon</th><th>Tue</th><th>Wen</th><th>Thu</th><th>Fri</th><th>Sat</th></tr></thead>',
today = this.isToday(year, month),
that = this,
createDay = function(i){
var current = today == (i - indentCell) ? ' z-c' : '';
tbody = tbody + '<td class="td-day'+current+'">' + that.formatNum((i - indentCell)) + '</td>';
},
otherDay = function(i){
var type = i > validCell ? 'td-back' : 'td-front';
tbody += '<td class="'+type+'"></td>';
}
for(var i = 1; i < allCell; i++){
(i>1 && ((i-1) % 7 == 0)) && (tbody += '<tr class="ui-animated ui-animated-'+this.dir+'">');
(i>indentCell && i<=validCell) ? createDay(i) : otherDay(i);
(i % 7 == 0) && (tbody += '</tr>');
}
$('.u-start-body').html(thead+'<tbody>'+tbody+'</tbody>');
this.fillDay();
},
/**
* @func : filling date
*/
fillDay:function(){
var backIndex = 1,
frontCnt = $('.u-start-body td.td-front').size()-1,
first = $('.u-start-year').text()+'/'+$('.u-start-month').text()+'/01',
lastDay = this.formatDate(new Date(first).getTime()-86400000, 'date'),
frontIndex = lastDay - frontCnt,
that = this;
$('.u-start-body td.td-back').each(function(){
$(this).text(that.formatNum(backIndex));
backIndex += 1;
});
$('.u-start-body td.td-front').each(function(){
$(this).text(that.formatNum(frontIndex));
frontIndex += 1;
});
},
/**
* @func : clicking then selecting a day
*/
selectDay:function(){
var that = this,
date = null;
$('.u-start-body').undelegate().delegate('td.td-day', 'click', function(){
$(this).addClass('z-c').siblings().removeClass('z-c').parent().siblings().children().removeClass('z-c');
date = $('.u-start-year').text()+'-'+$('.u-start-month').text()+'-'+$(this).text();
that.getData(date);
});
},
/**
* @func : format digit
*/
formatNum:function(num){
num = num.toString();
num.length == 1 && (num = '0'+num);
return num;
},
/**
* @func : format time stamp
* @param : date
* @param : type:retune type
*/
formatDate:function(time, type){
var date = new Date(time),
year = date.getYear(),
month = date.getMonth()+1,
date = date.getDate();
switch(type){
case 'year':
return year;
break;
case 'month':
return month;
break;
case 'date':
return date;
break;
default:
return year+'-'+month+'-'+date;
}
},
/**
* @func : return Today's date
*/
today:function(){
var date = new Date();
return [date.getFullYear(), date.getMonth(), date.getDate()];
},
/**
* @func : is it leap?
*/
isLeap:function(year){
return (year % 4) == 0 ? true : false;
},
/**
* @func : is today?
*/
isToday:function(year, month){
var date = this.today();
return (date[0] == year && date[1] == month) ? date[2] : false;
},
/**
* @func : change value by selecting month
* @param : year:
* @param : month:
* @param : callback:
*/
initDate:function(year, month, callback){
month = this.formatNum(month);
$('.u-start-month').text(month);
$('.u-start-year').text(year);
callback && callback.call(this);
},
/**
* @func : next month
*/
nextMonth:function(){
var month = $('.u-start-month').text(),
year = $('.u-start-year').text();
if(month < 12){
++month;
}
else{
month = '01';
++year;
}
this.initDate(year, month, $.proxy(function(){
this.dir = 'right';
this.init(year, month);
}, this));
},
/**
* @func : last month
*/
prevMonth:function(){
var month = $('.u-start-month').text(),
year = $('.u-start-year').text();
if(month <= 1){
month = 12;
--year;
}
else{
--month;
}
this.initDate(year, month, $.proxy(function(){
this.dir = 'left';
this.init(year, month);
}, this));
},
/**
* @func : ajax requre data
* @param : date
*/
getData:function(date){
$('.u-start-footer').text(date);
}
}
var d = new Date();
var currentYear = d.getFullYear();
var currentMonth = d.getMonth()+1;
document.getElementsByClassName('u-start-year').item(0).innerHTML=currentYear;
document.getElementsByClassName('u-start-month').item(0).innerHTML=currentMonth;
Start.init(currentYear, currentMonth);
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |