我需要一种方法来舍入到最接近的四分之一小时。
给定时间:上午08:22 =>圆形:上午08:15
给定时间:上午08:23 =>圆形:上午08:30
我有这个功能来查找当前时间:
$scope.clock = "loading clock..."; // initialise the time variable
$scope.tickInterval = 1000 //ms
var tick = function () {
$scope.clock = Date.now() // get the current time
$timeout(tick, $scope.tickInterval); // reset the timer
}
// Start the timer
$timeout(tick, $scope.tickInterval);
然后我需要将我的时钟缩短到最近的四分之一小时。