우아한 프로그래밍

  

var current = 0;

setInterval( worker, 1000);

function worker(){

       

        // 현재시간

        var now = new Date();;

        var hour = now.getHours();

    var minutes = now.getMinutes()

   

    if(  hour >= 9 && hour < 12 )

    {            

               current =  ((hour - 9) * 60 + minutes) * 0.85 + 3;

    }

    else if( hour >= 12 && hour < 18)

    {

               current =  ((hour - 12) * 60 + minutes) * 0.85;

    }

   

    document.getElementById("data").innerHTML = Math.round( current);

}

 


profile

우아한 프로그래밍

@자바조아!

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!