别问我,我啥都不知道,就是copy的
function setConsole(text,size){
if(text && typeof text == "string"){
fn(text,size);
}else{
fn("只支持字符串类型的提示!",60);
}
function fn(text,size){
size = size ? Number(size) ? Number(size) : 10 : 10; //字体大小 默认为10px
var msg = "'";
for(var i = 0 ; i < text.length ; i++){
if(i == text.length - 1){
msg += "%c"+text[i] + "'";
}else{
msg += "%c"+text[i];
}
}
for(var k = 0 ; k < text.length ; k++){
msg += ",'font-size:"+size+"px;color:rgb("+Math.floor(Math.random()*255)+","+Math.floor(Math.random()*255)+","+Math.floor(Math.random()*255)+");'"
}
eval("console.log(" + msg + ")");
}
}