2
3

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をスタイルでデザインできる!(Chrome検証)

Last updated at Posted at 2018-12-30

Chrome最新版で検証済み。他ブラウザでは未確認です。

先ずはコンソール出力の結果から。

スクリーンショット 2018-12-30 11.45.21.png

ソースは以下の通りです。変換指定文字列%cをつけることで、スタイルを割り当てることができます。
最終行はリンクのため、スタイルが当たらず空にしています。(←もしかしたらできるかもしれませんが)

console.log(
  '%c copyright %c tsuzuki557 %c https://qiita.com/tsuzuki557',
  'padding: 5px 0; background-color: red; color: #fff;',
  'padding: 5px 0; margin: 0 10px; background-color: pink; color: #000;',
  ''
);

制作物をコンソールログで出力しているおしゃれな会社、海外ではたまに見かけますが良いですね。

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?