chinese_lunar_calendar.js是一款公历阳历转换成农历时间等信息的插件


chinese_lunar_calendar.js是一款公历阳历转换成农历时间等信息的插件,输出信息包含了中国年份、是否闰月、节气、生肖等信息。

安装使用

npm

npm install --save chinese-lunar-calendar

import { getLunar } from 'chinese-lunar-calendar'

// 传入1991年2月1日
console.log(getLunar(1991, 2, 1)); 
/*输出
{ 
  lunarMonth: 12,   //农历月份
  lunarDate: 17,    //农历日期
  isLeap: false,    //是否闰月
  solarTerm: null,  //节气,null代表没有
  lunarYear: '庚午年', //农历年份,年以正月初一开始
  zodiac: '马',     //生肖,生肖以正月初一开始
  dateStr: '腊月十七' //农历中文
}
*/

cdn

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Test</title>
    <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/chinese_lunar_calendar.min.js"></script>
    <script>
        const { getLunar } = chinese_lunar_calendar;
        console.log(getLunar(2030, 1, 12));
    </script>
  </head>
  <body>
  </body>
</html>



立即下载chinese_lunar_calendar.min.js查看所有js插件

网友评论0

程序员在线工具箱