随笔 - 36  文章 - 0  评论 - 62  阅读 - 97454 

FullCalendar用来做日程管理功能非常强大,但是唯一不足的地方是没有将中国农历历法加进去,今天我将结合实例和大家分享如何将中国农历中的节气和节日整合到FullCalendar中,从而增强其实用性。

HTML

首先是要载入jQuery库和fullcalendar插件。

<script src='js/jquery-1.9.1.min.js'></script> 
<script src='js/fullcalendar.min.js'></script> 

然后在body中,建立日历容器div#calendar。

<div id="calendar"></div> 

jQuery

使用jQuery调用fullcalendar插件,方法如下,值得一提的是events数据源来自json.php,这个PHP文件负责读取数据并返回json格式的日程安排数据给前端。

$(function() { 
    $('#calendar').fullCalendar({ 
        header: { 
            left'prev,next today', 
            center'title', 
            right'month,agendaWeek,agendaDay' 
        }, 
        selectabletrue, 
        events'json.php' //数据源 
    }); 
}); 

以上代码就可以展示一个日历界面,但是需要加入农历,则需要将农历算法代码整合到fullCalendar中,并且需要将fullCalendar.js中的代码稍微改动下,以下是网友@太空飛豬以及/可爱/玫瑰提供的中国农历算法javascript版,再此一并感谢!

function RunGLNL() { 
    var today = new Date(); 
    var d = new Array("周日""周一""周二""周三""周四""周五""周六"); 
    var DDDD = d[today.getDay()]; 
    DDDD = DDDD + " " + (CnDateofDateStr(today)); //显示农历 
    DDDD = DDDD + SolarTerm(today); //显示二十四节气 
    document.write(DDDD); 
} 
function DaysNumberofDate(DateGL) { 
    return parseInt((Date.parse(DateGL) - Date.parse(DateGL.getFullYear() + "/1/1")) / 86400000) + 1; 
} 
function CnDateofDate(DateGL) { 
    var CnData = new Array( 
        0x160x2a0xda0x000x830x490xb60x050x0e0x640xbb0x000x190xb20x5b0x00, 
        0x870x6a0x570x040x120x750x2b0x000x1d0xb60x950x000x8a0xad0x550x02, 
        0x150x550xaa0x000x820x550x6c0x070x0d0xc90x760x000x170x640xb70x00, 
        0x860xe40xae0x050x110xea0x560x000x1b0x6d0x2a0x000x880x5a0xaa0x04, 
        0x140xad0x550x000x810xaa0xd50x090x0b0x520xea0x000x160xa90x6d0x00, 
        0x840xa90x5d0x060x0f0xd40xae0x000x1a0xea0x4d0x000x870xba0x550x04 
    ); 
    var CnMonth = new Array(); 
    var CnMonthDays = new Array(); 
    var CnBeginDay; 
    var LeapMonth; 
    var Bytes = new Array(); 
    var I; 
    var CnMonthData; 
    var DaysCount; 
    var CnDaysCount; 
    var ResultMonth; 
    var ResultDay; 
    var yyyy = DateGL.getFullYear(); 
    var mm = DateGL.getMonth() + 1; 
    var dd = DateGL.getDate(); 
    if (yyyy < 100) yyyy += 1900; 
    if ((yyyy < 1997) || (yyyy > 2020)) { 
        return 0; 
    } 
    Bytes[0] = CnData[(yyyy - 1997) * 4]; 
    Bytes[1] = CnData[(yyyy - 1997) * 4 + 1]; 
    Bytes[2] = CnData[(yyyy - 1997) * 4 + 2]; 
    Bytes[3] = CnData[(yyyy - 1997) * 4 + 3]; 
    if ((Bytes[0] & 0x80) != 0) { 
        CnMonth[0] = 12; 
    } 
    else { 
        CnMonth[0] = 11; 
    } 
    CnBeginDay = (Bytes[0] & 0x7f); 
    CnMonthData = Bytes[1]; 
    CnMonthData = CnMonthData << 8; 
    CnMonthData = CnMonthData | Bytes[2]; 
    LeapMonth = Bytes[3]; 
    for (I = 15; I >= 0; I--) { 
        CnMonthDays[15 - I] = 29; 
        if (((1 << I) & CnMonthData) != 0) { 
            CnMonthDays[15 - I]++; 
        } 
        if (CnMonth[15 - I] == LeapMonth) { 
            CnMonth[15 - I + 1] = -LeapMonth; 
        } 
        else { 
            if (CnMonth[15 - I] < 0) { 
                CnMonth[15 - I + 1] = -CnMonth[15 - I] + 1; 
            } 
            else { 
                CnMonth[15 - I + 1] = CnMonth[15 - I] + 1; 
            } 
            if (CnMonth[15 - I + 1] > 12) { 
                CnMonth[15 - I + 1] = 1; 
            } 
        } 
    } 
    DaysCount = DaysNumberofDate(DateGL) - 1; 
    if (DaysCount <= (CnMonthDays[0] - CnBeginDay)) { 
        if ((yyyy > 1901) && (CnDateofDate(new Date((yyyy - 1) + "/12/31")) < 0)) { 
            ResultMonth = -CnMonth[0]; 
        } 
        else { 
            ResultMonth = CnMonth[0]; 
        } 
        ResultDay = CnBeginDay + DaysCount; 
    } 
    else { 
        CnDaysCount = CnMonthDays[0] - CnBeginDay; 
        I = 1; 
        while ((CnDaysCount < DaysCount) && (CnDaysCount + CnMonthDays[I] < DaysCount)) { 
            CnDaysCount += CnMonthDays[I]; 
            I++; 
        } 
        ResultMonth = CnMonth[I]; 
        ResultDay = DaysCount - CnDaysCount; 
    } 
    if (ResultMonth > 0) { 
        return ResultMonth * 100 + ResultDay; 
    } 
    else { 
        return ResultMonth * 100 - ResultDay; 
    } 
} 
function CnYearofDate(DateGL) { 
    var YYYY = DateGL.getFullYear(); 
    var MM = DateGL.getMonth() + 1; 
    var CnMM = parseInt(Math.abs(CnDateofDate(DateGL)) / 100); 
    if (YYYY < 100YYYY += 1900; 
    if (CnMM > MMYYYY--; 
    YYYY -= 1864; 
    return CnEra(YYYY) + "年"; 
} 
function CnMonthofDate(DateGL) { 
    var CnMonthStr = new Array("零""正""二""三""四""五""六""七""八""九""十""冬""腊"); 
    var Month; 
    Month = parseInt(CnDateofDate(DateGL) / 100); 
    if (Month < 0) { 
        return "闰" + CnMonthStr[-Month] + "月"; 
    } 
    else { 
        return CnMonthStr[Month] + "月"; 
    } 
} 
function CnDayofDate(DateGL) { 
    var CnDayStr = new Array("零", 
        "初一""初二""初三""初四""初五", 
        "初六""初七""初八""初九""初十", 
        "十一""十二""十三""十四""十五", 
        "十六""十七""十八""十九""二十", 
        "廿一""廿二""廿三""廿四""廿五", 
        "廿六""廿七""廿八""廿九""三十"); 
    var Day; 
    Day = (Math.abs(CnDateofDate(DateGL))) % 100; 
    //hanlichen mod 
    if ("初一" == CnDayStr[Day]) { 
        // alert(SolarTerm(DateGL)); 
        return CnMonthofDate(DateGL); 
    } else { 
        if (SolarTerm(DateGL) != "") { 
            return SolarTerm(DateGL); 
        } else { 
            return CnDayStr[Day]; 
        } 
    } 
} 
function DaysNumberofMonth(DateGL) { 
    var MM1 = DateGL.getFullYear(); 
    MM1 < 100 ? MM1 += 1900 : MM1; 
    var MM2 = MM1; 
    MM1 += "/" + (DateGL.getMonth() + 1); 
    MM2 += "/" + (DateGL.getMonth() + 2); 
    MM1 += "/1"; 
    MM2 += "/1"; 
    return parseInt((Date.parse(MM2) - Date.parse(MM1)) / 86400000); 
} 
function CnEra(YYYY) { 
    var Tiangan = new Array("甲""乙""丙""丁""戊""己""庚""辛""壬""癸"); 
    var Dizhi = new Array("子""丑""寅""卯""辰""巳""午""未""申""酉""戌""亥"); 
    return Tiangan[YYYY % 10] + Dizhi[YYYY % 12]; 
} 
function CnDateofDateStr(DateGL) { 
    if (CnMonthofDate(DateGL) == "零月"return " 请调整您的计算机日期!"; 
    else return "农历" + CnYearofDate(DateGL) + " " + CnMonthofDate(DateGL) + CnDayofDate(DateGL); 
} 
 
function SolarTerm(DateGL) { 
    var SolarTermStr = new Array( 
        "小寒""大寒""立春""雨水""惊蛰""春分", 
        "清明""谷雨""立夏""小满""芒种""夏至", 
        "小暑""大暑""立秋""处暑""白露""秋分", 
        "寒露""霜降""立冬""小雪""大雪""冬至"); 
    var DifferenceInMonth = new Array( 
        127206012754951281180128944512992251310355, 
        132156013330351342770135085513564201359045, 
        135858013550551348695134004013296301318455, 
        130693512973801286865127773012745501271556); 
    var DifferenceInYear = 31556926; 
    var BeginTime = new Date(1901 / 1 / 1); 
    BeginTime.setTime(947120460000); 
    for (; DateGL.getFullYear() < BeginTime.getFullYear();) { 
        BeginTime.setTime(BeginTime.getTime() - DifferenceInYear * 1000); 
    } 
    for (; DateGL.getFullYear() > BeginTime.getFullYear();) { 
        BeginTime.setTime(BeginTime.getTime() + DifferenceInYear * 1000); 
    } 
    for (var M = 0DateGL.getMonth() > BeginTime.getMonth(); M++) { 
        BeginTime.setTime(BeginTime.getTime() + DifferenceInMonth[M] * 1000); 
    } 
    if (DateGL.getDate() > BeginTime.getDate()) { 
        BeginTime.setTime(BeginTime.getTime() + DifferenceInMonth[M] * 1000); 
        M++; 
    } 
    if (DateGL.getDate() > BeginTime.getDate()) { 
        BeginTime.setTime(BeginTime.getTime() + DifferenceInMonth[M] * 1000); 
        M == 23 ? M = 0 : M++; 
    } 
    var JQ = ""; 
    if (DateGL.getDate() == BeginTime.getDate()) { 
        JQ += SolarTermStr[M]; 
    } 
    return JQ; 
} 

将以上代码直接复制粘贴到从官网下载的fullcalendar.js的最后。然后关键的是我们要对fullcalendar.js原有的代码中程序日历天数的代码段做修改。

大概在第2385行开始,其中的if语句中的部分修改为以下代码

if (showNumbers) {//月视图天数数字显示 
    var cnMonth = CnMonthofDate(date);//农历月 
    var cnDay = CnDayofDate(date);//农历日 
    var solar = SolarTerm(date);//农历节气 
    if(solar!='') cnDay=solar; 
    var cnMonDay = cnMonth+cnDay; 
 
    var holiday = ''; 
    if(cnDay=='正月') 
        holiday = '春节'; 
    switch(cnMonDay){ 
        case '正月初一': holiday = '春节';break; 
        case '正月十五': holiday = '元宵';break; 
        case '五月初五': holiday = '端午';break; 
        case '八月十五': holiday = '中秋';break; 
        case '九月初九': holiday = '重阳';break; 
        case '腊月三十': holiday = '除夕';break; 
    } 
             
    html += "<div class='fc-day-number'><span class='solarday'>"+ cnDay+"</span> 
    <span class='holiday'>"+holiday+"</span>" + date.getDate() + "</div>"; 
} 

以上代码中,调用了农历算法,计算出日历中对应的农历日期包括节气,在这里我们还做了特殊节日的处理,比如春节、端午、中秋等,然后我们要将农历与公历以及特殊节日同时显示在fullcalendar中,这时就要修改css来控制使得公历日期显示在左上,农历显示在右上,特殊节日显示在中间。

.fc-grid .fc-day-number{padding0 2pxposition:relative} 
.fc-grid .fc-day-number span.solarday{float:right;color:#999}     
.fc-grid .fc-day-number span.holiday{position:absolute; left:40%
posted on   小熊吉米  阅读(2194)  评论(0编辑  收藏  举报
编辑推荐:
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· AI与.NET技术实操系列(六):基于图像分类模型对图像进行分类
点击右上角即可分享
微信分享提示