javascript – 风格化的控制台日志记录

前端之家收集整理的这篇文章主要介绍了javascript – 风格化的控制台日志记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在Facebook上,并且控制台打开时,我看到下面的图像.他们怎么做到这一点

解决方法

就像在Firebug中一样,您可以使用%c来设计控制台日志输出.看看我们如何实现Facebook的例子:
console.log("%cStop!","color: red; font-family: sans-serif; font-size: 4.5em; font-weight: bolder; text-shadow: #000 1px 1px;");

由于它支持CSS属性,我们甚至可以在其中“绘制”图像:

(function(url) {
  // Create a new `Image` instance
  var image = new Image();

  image.onload = function() {
    // Inside here we already have the dimensions of the loaded image
    var style = [
      // Hacky way of forcing image's viewport using `font-size` and `line-height`
      'font-size: 1px;','line-height: ' + this.height + 'px;',// Hacky way of forcing a middle/center anchor point for the image
      'padding: ' + this.height * .5 + 'px ' + this.width * .5 + 'px;',// Set image dimensions
      'background-size: ' + this.width + 'px ' + this.height + 'px;',// Set image URL
      'background: url('+ url +');'
     ].join(' ');

     console.log('%c',style);
  };

  // Actually loads the image
  image.src = url;
})('https://i.cloudup.com/Zqeq2GhGjt-3000x3000.jpeg');
原文链接:https://www.f2er.com/js/152785.html

猜你在找的JavaScript相关文章