14
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

console.log で画像表示

Last updated at Posted at 2013-06-30

dunxrion/console.image みて面白いなーと思ったので、コア部分のアイディアだけメモ。

こんな感じ:

var url = 'http://qiita.com/favicon.png';
console.log('%c+', 'font-size: 0px; padding: 8px; color: transparent; background: url(' + url + ');');

スクリーンショット:
実行例のスクリーンショット

JavaScript - console.log でログに色付けたり枠付けたり - Qiita の応用で:

  • 対象の画像を背景画像に
  • パディングを画像サイズに
  • 中身の文字を透明ゼロサイズに

でできる。

しかしこれ、何に使うんだ・・・

14
18
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?