Material Icons Test

1. 目的

このページに、Icons (Material Design) を組み込んでみる。

2. Icons の導入手順

2つの方法がある。どちらも以下の手順通りにすれば、あとはHTML内に <i class="material-icons">launch</i> などと書けばアイコン launch が表示される。

(a) Google Web Fonts を使う方法

<head> 内に以下を記述するだけ

<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
      rel="stylesheet">

(b) 自分でホスティングする方法

(1) material-design-icons/iconfont からフォントファイルをダウンロードする。

以下のコマンドでダウンロードできる

wget --max-redirect=2 https://github.com/google/material-design-icons/blob/master/iconfont/MaterialIcons-Regular.ijmap?raw=true -O MaterialIcons-Regular.ijmap

wget --max-redirect=2 https://github.com/google/material-design-icons/blob/master/iconfont/MaterialIcons-Regular.svg?raw=true -O MaterialIcons-Regular.svg

wget --max-redirect=2 https://github.com/google/material-design-icons/blob/master/iconfont/MaterialIcons-Regular.ttf?raw=true -O MaterialIcons-Regular.ttf

wget --max-redirect=2 https://github.com/google/material-design-icons/blob/master/iconfont/MaterialIcons-Regular.woff?raw=true -O MaterialIcons-Regular.woff

wget --max-redirect=2 https://github.com/google/material-design-icons/blob/master/iconfont/MaterialIcons-Regular.woff2?raw=true -O MaterialIcons-Regular.woff2

(2) CSS に以下を記述する。

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../font/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(../font/MaterialIcons-Regular.woff2) format('woff2'),
    url(../font/MaterialIcons-Regular.woff) format('woff'),
    url(../font/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

3. アイコンの表示

launch info help schedule thumb_up verified_user accessibility account_circle code check_circle

4. 参考