首页 > Web开发 > 详细

js语言精粹P38

时间:2014-09-29 10:18:48      阅读:248      评论:0      收藏:0      [点我收藏+]

<script>
var fade=function(node){
    var level=1;
    var step=function(){
        var hex=level.toString(16);
        node.style.backgroundColor=‘#‘+hex+hex+hex+hex+hex+hex;
        if(level<15){
            level+=1;
            setTimeout(step,100);
        }
    };
    step();//setTimeout(step,100);
};
fade(document.body);

</script>

js语言精粹P38

原文:http://www.cnblogs.com/dingyuanxin/p/3999510.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!