mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
17 lines
489 B
JavaScript
17 lines
489 B
JavaScript
// get user config
|
|
var start_date = document.getElementById("runtionshow").getAttribute("start_date")
|
|
|
|
function show_date_time() {
|
|
window.setTimeout("show_date_time()", 1000);
|
|
BirthDay=new Date(start_date);
|
|
today=new Date();
|
|
timeold=(today.getTime()-BirthDay.getTime());
|
|
msPerDay=24*60*60*1000
|
|
e_daysold=timeold/msPerDay
|
|
daysold=Math.floor(e_daysold);
|
|
webinfo_runtime_count.innerHTML= daysold + " " + GLOBAL_CONFIG.runtime_unit
|
|
}
|
|
|
|
show_date_time()
|
|
|