1

Electron アプリで Google Material Icons を使用しようとしていますが、アイコンのレンダリングで問題が発生しました。アイコンは Windows では完全にレンダリングされますが、OSX ではレンダリングされません。devtools を使用すると、どちらもフォントを「woff2」形式で正常に要求することがわかりましたが、Windows だけがアイコンをレンダリングしているように見えます...OSX は単に合字テキストをリストします。

Windows(左)、OSX(右)

ウィンドウズ OS X

これらはWindowsビルドでは機能しますが、OSXでは機能しません...単にリストhomeまたは

<i class="material-icons">home</i>
<i class="material-icons">&#xE88A;</i>

私も試してみました

<i class="material-icons" id="test"></i>
#test:after{ content: 'home' }

これが OSX 用の chromium ビルドの問題なのか、OS フォントの問題なのか、それとも何なのかわかりません。誰かが試してみるべきことについて何かガイダンスを提供できれば、私は本当に助けていただければ幸いです.

使用しているCSSはこちら

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(./fonts/Material-Design-Iconic-Font.eot); /* For IE6-8 */
  src: local('Material Icons'),
       local('MaterialIcons-Regular'),
       url(./fonts/Material-Design-Iconic-Font.woff2) format('woff2'),
       url(./fonts/Material-Design-Iconic-Font.woff) format('woff'),
       url(./fonts/Material-Design-Iconic-Font.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';
}
4

1 に答える 1