作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的混合应用程序中使用自定义字体 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)上运行良好,但在安卓移动浏览器(如 chrome)上运行不佳。我的最终目标是让它在 Android 的混合移动应用程序上运行。
是否需要做任何配置?
最佳答案
这有效。
变量.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;
关于android - Android 移动浏览器和混合应用程序不支持自定义古吉拉特语字体 (GopikaTwo),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50549740/
我是一名优秀的程序员,十分优秀!