Google、Variable Fontsのサポートを開始
(developers.google.com)Web上でフォントサイズを削減するために、いくつかのマスタースタイルを指定し、軸(axis)を追加することで数十個以上の派生インスタンスを生成するもの。
CSS を通じて各 Variation を選択可能。
@supports (font-variation-settings: 'wdth' 200) {
@font-face {
/* https://github.com/TypeNetwork/Amstelvar */
font-family: AmstelvarAlpha;
src: url('../fonts/AmstelvarAlpha-VF.ttf');
font-weight: normal;
font-style: normal;
}
#font-amstelvar {
font-family: AmstelvarAlpha;
font-variation-settings: 'wdth' 400, 'wght' 98;
}
}
まだコメントはありません。