1. ホーム
  2. javascript

[解決済み] オフラインでマテリアルアイコンをホストする方法は?

2022-05-06 11:08:34

質問

非常に単純な質問で申し訳ないのですが、Googleマテリアルのアイコンを

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

?

インターネットに接続されていない状態でも、アイコンを表示できるようにしたい。

解決方法は?

方法2. セルフホスティング デベロッパーガイド

ダウンロード を解凍し、マテリアルデザインのアイコンファイルを含むフォントフォルダをローカルのプロジェクトにコピーしてください。 https://github.com/google/material-design-icons/releases

を使用するだけです。 フォント このフォルダには、さまざまな形式のアイコンフォント(マルチブラウザ対応)とボイラープレートCSSが含まれています。

  • のurl属性のソースを置き換えます。 @font-face を、ローカルプロジェクト内のアイコンフォントフォルダ(フォントファイルが置かれている場所)への相対パスに置き換えます。 url("iconfont/MaterialIcons-Regular.ttf")
<ブロッククオート
@font-face {
   font-family: 'Material Icons';
   font-style: normal;
   font-weight: 400;
   src: url(iconfont/MaterialIcons-Regular.eot); /* For IE6-8 */
   src: local('Material Icons'),
        local('MaterialIcons-Regular'),
        url(iconfont/MaterialIcons-Regular.woff2) format('woff2'),
        url(iconfont/MaterialIcons-Regular.woff) format('woff'),
        url(iconfont/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';
}


<i class="material-icons">face</i>


NPM / Bower パッケージ

Googleは公式にBowerとNPMの依存性オプションを用意しています -- Material Icons Guideに続く 1

bowerの使用 : bower install material-design-icons --save

NPMの使用 : npm install material-design-icons --save

マテリアルアイコン : また、Material Designのアイコンフォントと、アイコンをセルフホスティングするためのCSSフレームワークを、@mareraさんのサイトから探すこともできます。 https://marella.me/material-icons/


備考

googleはこのプロジェクトをローメンテナンスモードにしているようです。最後の この記事を書いている時点では、3年前にリリースされています。

この件に関してはGitHubにいくつかのissueがありますが、ここでは issue の @cyberalien のコメントを参照してください。 Is this project actively maintained? #951 いくつかのコミュニティプロジェクトに言及しています。 をフォークして、素材アイコンのメンテナンスを続けています。