用户:
YDS尹子查看:16 回复:17 评论:16 创建时间:2021-05-04T10:58:37
https://github.com/SMCYDS/box3/blob/main/time.js
var time=new Date().toString().split(" ")[4].split(":");
time[0]=(time[0]*1+8)%24;/*加8因为北京是东八区 */
var timetotal=time[0]*60+time[1]*1;
world.sunPhase=(0.75+timetotal/360*0.25)%1;
console.log(world.sunPhase)
YDS尹子setInterval(()=>{
var time=new Date().toString().split(" ")[4].split(":");
time[0]=(time[0]*1+8)%24;/*加8因为北京是东八区 */
var timetotal=time[0]*60+time[1]*1;
world.sunPhase=(0.75+timetotal/360*0.25)%1;
console.log(world.sunPhase)
},30000)点赞0
评论