Aktualizacja 2019 tutaj:
Aby samodzielnie hostować ikony materiałów, zwykłe, zaokrąglone, ostre, wszystkie warianty. Zdobądź je z tego repozytorium:
https://github.com/petergng/material-icon-font
Z jakiegoś powodu nie wiem, dlaczego te czcionki nie są łatwo dostępne w repozytoriach Google.
Ale proszę bardzo.
Po pobraniu pakietu przejdź do folderu bin, a zobaczysz cztery warianty. Oczywiście wybór należy do Ciebie.
Aby z nich skorzystać, utwórz plik css i
- Wygeneruj krój czcionki dla każdego potrzebnego wariantu:
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(./icons/regular/Material-Icons-Regular.eot); /* For IE6-8 */
src: local('Material-Icons-Regular'),
url(./icons/regular/Material-Icons-Regular.woff2) format('woff2'),
url(./icons/regular/Material-Icons-Regular.woff) format('woff'),
url(./icons/regular/Material-Icons-Regular.ttf) format('truetype');
}
@font-face {
font-family: 'Material Icons Round';
font-style: normal;
font-weight: 400;
src: url(./icons/round/Material-Icons-Round.eot); /* For IE6-8 */
src: local('Material-Icons-Round'),
url(./icons/round/Material-Icons-Round.woff2) format('woff2'),
url(./icons/round/Material-Icons-Round.woff) format('woff'),
url(./icons/round/Material-Icons-Round.svg) format('svg'),
url(./icons/round/Material-Icons-Round.ttf) format('truetype');
}
@font-face {
font-family: 'Material Icons Sharp';
font-style: normal;
font-weight: 400;
src: url(./icons/sharp/Material-Icons-Sharp.eot); /* For IE6-8 */
src: local('Material-Icons-Sharp'),
url(./icons/sharp/Material-Icons-Sharp.woff2) format('woff2'),
url(./icons/sharp/Material-Icons-Sharp.woff) format('woff'),
url(./icons/sharp/Material-Icons-Sharp.svg) format('svg'),
url(./icons/sharp/Material-Icons-Sharp.ttf) format('truetype');
}
url
Będzie link do miejsca, gdzie znajdują się ikony w swoim projekcie.
- Teraz zarejestrujmy klasy ikon:
.material-icons-outlined, .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;
}
Spowoduje to, że obie
.material-icons-outlined,
i
.material-icons
klasy będą używać tych samych wartości domyślnych. Jeśli chcesz użyć .material-icons-sharp
, po prostu dodaj go do dwóch nazw klas.
- Na koniec pozwól nam podłączyć krój czcionki pobrany w kroku 1.
.material-icons {
font-family: 'Material Icons';
}
.material-icons-outlined {
font-family: 'Material Icons Outline';
}
Ponownie, aby użyć więcej wariantów, takich jak Sharp, po prostu dodaj jego blok, tak jak dwa powyżej.
Po zakończeniu ... przejdź do swojego HTML i użyj nowo wybitych ikon.
<i class="material-icons-outlined">hourglass_empty</i>
<i class="material-icons">phone</i>