我正在尝试在我的混合应用程序中使用自定义字体GopikaTwo。我在我的css中添加了以下代码: -
@font-face {
font-family: 'GopikaTwo' !important;
src: url('GopikaTwo.eot') !important;
src: url('GopikaTwo.eot?#iefix') format('embedded-opentype'), url('GopikaTwo.woff2') format('woff2'), url('GopikaTwo.woff') format('woff'), url('GopikaTwo.ttf') format('truetype'), url('GopikaTwo.svg#GopikaTwo') format('svg') !important;
font-weight: normal;
font-style: normal;
}
.gopika-two {
font-family: "GopikaTwo", "Roboto", "Helvetica Neue", sans-serif !important;
}
这在桌面浏览器(如Chrome,Firefox)上运行良好,但在Android移动浏览器(如chrome)上运行不正常。我的最终目标是让它在Android上的混合移动应用程序上运行。
是否需要进行任何配置?
答案 0 :(得分:1)
这很有用。
variable.scss
@font-face {
font-family: 'GopikaTwo';
src: url('../assets/fonts/GopikaTwo.eot?#iefix') format('embedded-opentype'), url('../assets/fonts/GopikaTwo.woff') format('woff'), url('../assets/fonts/GopikaTwo.ttf') format('truetype'), url('../assets/fonts/GopikaTwo.svg#GopikaTwo') format('svg');
font-weight: normal;
font-style: normal;
}
$font-family-base: "GopikaTwo";
$font-family-ios-base: $font-family-base;
$font-family-md-base: $font-family-base;
$font-family-wp-base: $font-family-base;