console输出美化

  • 以%c开头,后面的文字就可以应用样式参数的属性
console.log("%c console也爱美", "font-size:20pt;color:red")
  • 可以尝试多个样式,每碰到一个%c开头就会应用对应的样式,甚至可以使用背景图片等等
console.log("%c 123123213 %c  sssssssss  %c  666", 
"background: url(https://www.baidu.com/img/bd_logo1.png) no-repeat center;padding-left:400px;padding-bottom: 200px",
"color:red", 
"text-shadow: 3px 1px 1px red")
image.png

你可能感兴趣的:(console输出美化)