一段无聊的代码

实时将当前的时分秒组成十六进制的颜色代码,作为网页背景颜色显示。

<code>
function dotime(){
    
    jQuery("body").css({"transition": "all 0.8s", "-webkit-transition": "all 0.8s"});
    
    var d = new Date();
    var hours = d.getHours();
    var mins = d.getMinutes();
    var secs = d.getSeconds();
    
    if (hours < 10){hours = "0" + hours};
    if (mins < 10){mins = "0" + mins};
    if (secs < 10){secs = "0" + secs};
    
    hours.toString();
    mins.toString();
    secs.toString();
    
    var hex = "#" + hours + mins + secs;
    
    jQuery("#t").html(hours +" : "+ mins +" : "+ secs);
    jQuery("#h").html(hex);
    
    document.body.style.background = hex;
    
    setTimeout(function(){ dotime();}, 1000);
}

</code>

One thought on “一段无聊的代码
  1. 夜枫's 2015/07/06 16:06  0

    实时将当前的时分秒组成十六进制的颜色代码,作为网页背景颜色显示。

Comments are closed.

添加一条新回复 回到顶部

亲爱的,主人已经关闭了这篇文章的评论 。