把时间缩短到下个季度

时间:2018-03-21 06:07:17

标签: javascript jquery time

例如

    {{#each posts}}     
        <div class="lb-overlay" id="image-{{id}}">       
            <a href="#image-{{getIdByIndex ../posts (math @index '-' 1)}}" class="lb-prev">Prev</a>       
            a href="#image-{{getIdByIndex ../posts (math @index '+' 1)}}" class="lb-next">Next   
        </div> 
    {{/each}}

    getIdByIndex: function(posts, index) {
        return posts[index].id;
    }

时间总是四舍五入到下一个四分之一小时,而不是下面这个例子。

The time is 8:05 -> it will round up into 8:15
The time is 8:27 -> it will round up into 8:30

有什么技巧可以实现这个方法吗?任何帮助表示赞赏。感谢。

0 个答案:

没有答案