PKM-er / Blue-topaz-example

Blue topaz themes example vault for Obsidian
2.07k stars 227 forks source link

home页天气栏月相无法加载 #68

Closed Xiuyee-d closed 1 year ago

Xiuyee-d commented 1 year ago

home页加载后如下图: image

月相加载失败,切换编辑模式查看源代码: image

此处调用的是NASA提供的365*24=8760个月相帧文件,索引值为4位整型,索引值少于4位时头部应补0,对moonIndex变量进行处理,修改为let moonIndex = moment().diff(moment().startOf('year'),"hours").toString().padStart(4, '0');

此时再查看天气栏,可以发现月相已成功加载: image

cumany commented 1 year ago

很棒~! 已采纳