首页
博客
作品
留言板
友情链接
时光轴
登录
注册
运行代码
菜单2
菜单3
菜单4
菜单5
// 随机获取一种颜色 var RandomColor = function(){ return '#' + (function(color) { return (color += '0123456789abcdef'[Math.floor(Math.random()*16)]) && (color.length == 6) ? color : arguments.callee(color); })(''); } // 屏幕换色 var text = 'By luoluolzb'; setInterval(function() { Screen.clear(RandomColor()); Screen.drawText(text, (Screen.width - text.length*16/2)/2, (Screen.height - 16)/2, '#fff'); }, 500); // 打印99乘法表 for(var i = 1; i < 10; ++ i) { for(var j = 1; j <= i; ++ j) { console.log(j + '*' + i + '=' + (i*j) + ' '); if (i * j < 10) { console.log(' '); } } console.log("\n"); }
当前浏览器不支持canvas,请更换浏览器使用!
console