小程序-判斷一天的不同時間段顯示不同的內容
摘要
好吧,判斷一天的不同時間段顯示不同的內容又是在我的項目中的一個需求,沒辦法呀,容易忘,還是寫著吧
需求:1.把一天分為3個時間段,5:00-11:00 11:00-15:00 15:00-5:00
2.不同的時間段頂部背景色顏色不同
onLoad:function(){
var time = parseInt(new Data().getHours()); //返回小時數
var times = 1;
if(5 < time && time < 11){
times = 1;
console.log("早")
}else if (11 <= time && time <15){
times = 2;
console.log("中")
}else{
times = 3;
console.log("晚")
}
var that = this;
switch (times){
case 1:
that.setData({ });
wx.setNavigationBarColor({
frontColor:"#fff",
backgroundColor:"#ff0000"
});
break;
case 2:
that.setData({ });
wx.setNavigationBarColor({
frontColor:"#fff",
backgroundColor:"#ff0304"
});
break;
default:
that.setData({ });
wx.setNavigationBarColor({
frontColor:"#fff",
backgroundColor:"#ff0304"
});
break;
}
}
小程序-判斷一天的不同時間段顯示不同的內容