console.log在控制台打出css样式的文字及图片
console.log增强api
谷歌开发者中心上面关于谷歌浏览器控制台console.log()的文档
Format | Specifier |
---|---|
%s | Formats the value as a string. |
%d or %i | Formats the value as an integer. |
%f | Formats the value as a floating point value. |
%o | Formats the value as an expandable DOM element (as in the Elements panel). |
%O | Formats the value as an expandable JavaScript object. |
%c | Formats the output string according to CSS styles you provide. |
可以看到,通过占位符%c
,可以对输出到console控制台的文字进行CSS控制。
格式如下:
console.log("%c需要输出的信息 ", "css 代码");
输出3D TEXT
|
|
彩色背景文字
|
|
文字颜色
|
|
设置不同的css
|
|
在Chrome控制台输出图片
|
|
参考资料
https://www.cnblogs.com/Wayou/p/chrome_dev_tool_style_console.html