49 lines
2.2 KiB
JavaScript
49 lines
2.2 KiB
JavaScript
function init_life_time() {
|
|
function getAsideLifeTime() {
|
|
/* 当前时间戳 */
|
|
let nowDate = +new Date();
|
|
/* 今天开始时间戳 */
|
|
let todayStartDate = new Date(new Date().toLocaleDateString()).getTime();
|
|
/* 今天已经过去的时间 */
|
|
let todayPassHours = (nowDate - todayStartDate) / 1000 / 60 / 60;
|
|
/* 今天已经过去的时间比 */
|
|
let todayPassHoursPercent = (todayPassHours / 24) * 100;
|
|
$('#dayProgress .date-text span').html(parseInt(todayPassHours));
|
|
$('#dayProgress .progress .progress-bar').css('width', parseInt(todayPassHoursPercent) + '%');
|
|
$('#dayProgress .progress .progress-bar').html(parseInt(todayPassHoursPercent) + '%');
|
|
/* 当前周几 */
|
|
let weeks = {
|
|
0: 7,
|
|
1: 1,
|
|
2: 2,
|
|
3: 3,
|
|
4: 4,
|
|
5: 5,
|
|
6: 6
|
|
};
|
|
let weekDay = weeks[new Date().getDay()];
|
|
let weekDayPassPercent = (weekDay / 7) * 100;
|
|
$('#weekProgress .date-text span').html(weekDay);
|
|
$('#weekProgress .progress .progress-bar').css('width', parseInt(weekDayPassPercent) + '%');
|
|
$('#weekProgress .progress .progress-bar').html(parseInt(weekDayPassPercent) + '%');
|
|
/* 月 */
|
|
let year = new Date().getFullYear();
|
|
let date = new Date().getDate();
|
|
let month = new Date().getMonth() + 1;
|
|
let monthAll = new Date(year, month, 0).getDate();
|
|
let monthPassPercent = (date / monthAll) * 100;
|
|
$('#monthProgress .date-text span').html(date);
|
|
$('#monthProgress .progress .progress-bar').css('width', parseInt(monthPassPercent) + '%');
|
|
$('#monthProgress .progress .progress-bar').html(parseInt(monthPassPercent) + '%');
|
|
/* 年 */
|
|
let yearPass = (month / 12) * 100;
|
|
$('#yearProgress .date-text span').html(month);
|
|
$('#yearProgress .progress .progress-bar').css('width', parseInt(yearPass) + '%');
|
|
$('#yearProgress .progress .progress-bar').html(parseInt(yearPass) + '%');
|
|
}
|
|
getAsideLifeTime();
|
|
setInterval(() => {
|
|
getAsideLifeTime();
|
|
}, 1000);
|
|
}
|
|
init_life_time() |