Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<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

Dismiss x
public
Bin info
anonymouspro
0viewers