码迷,mamicode.com
首页 > 其他好文 > 详细

时间线

时间:2017-07-21 18:56:42      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:ons   time   ret   return   cti   minutes   second   mon   line   

function gettimeLine(){
const now = new Date();

now.setHours( 0 );
now.setMinutes( 0 );
now.setSeconds( 1 );

const year = now.getFullYear();
const month = now.getMonth() + 1;
const $year = now.getFullYear() - ( month < 4 ? 1 : 0 );
const days = ( new Date( `${ $year + 1 }-04-01` ) - new Date( `${ $year }-04-01` ) ) / 86400000;

return ( ( now - new Date( `${ $year }-04-01` ) ) / 86400000 / days * 100 ).toFixed( 2 ) + ‘%‘;
}
undefined
gettimeLine()
"30.32%"

时间线

标签:ons   time   ret   return   cti   minutes   second   mon   line   

原文地址:http://www.cnblogs.com/LSSSunshine/p/7219084.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!