我已经找到了解决方案。在 android 4.3 中工作的最佳字体格式是 svg。
@font-face {
font-family: 'phetsarath_otecorner';
src: url('font/phetsarath_ot.svg');
src: url('font/phetsarath_ot.svg#phetsarath_otregular') format('svg'),
url('font/phetsarath_ot.woff') format('woff'),
url('font/phetsarath_ot.eot?#iefix') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}
并按如下方式应用字体系列。
body, .ionic-body {
font-family: 'phetsarath_otecorner', sans-serif;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: 'phetsarath_otecorner', sans-serif;
}
.tab-item {
font-family: 'phetsarath_otecorner', sans-serif;
}
input, button, select, textarea {
font-family: 'phetsarath_otecorner', sans-serif;
}
.roboto {
font-family: 'phetsarath_otecorner', sans-serif;
}
.roboto input {
font-family: 'phetsarath_otecorner', sans-serif;
}