Android上的CSS字体
我曾经在@font-face
网站上显示League Gothic,但未在Android 1.6上显示。这是我的代码,由[Font Squirrel的@
font-face生成器生成]
@font-face { font-family: 'LeagueGothicRegular';
src: url('/fonts/League_Gothic-webfont.eot');
src: local('☺'), url('/fonts/League_Gothic-webfont.woff') format('woff'), url('/fonts/League_Gothic-webfont.ttf') format('truetype'), url('/fonts/League_Gothic-webfont.svg#webfont') format('svg');
font-weight: normal;
font-style: normal;
}
font-family:'LeagueGothicRegular',Impact,Charcoal,sans-serif;
如果@font-face
不支持的话,这没什么大不了的(我读到@font-face
支持在Android 2中已经完全消失了)。但是League
Gothic非常简洁,因此我想为Android指定比默认的sans-serif更好的后备字体,这样设计就不会完全中断。
但是我找不到Android随附的默认字体的确切列表以及在CSS中用来引用它们的名称。
到目前为止的答案都遗漏了重点(或者我措辞不好)-我需要的是Android随附的系统字体列表。事情是这样的Android。
回答:
我在Android(2.2)系统文件中看到的字体是:
- Clockopia.ttf
- DroidSans-Bold.ttf
- DroidSans.ttf
- DroidSansArabic.ttf
- DroidSansFallback.ttf
- DroidSansHebrew.ttf
- DroidSansMono.ttf
- DroidSansThai.ttf
- DroidSerif-Bold.ttf
- DroidSerif-BoldItalic.ttf
- DroidSerif-Italic.ttf
- DroidSerif-Regular.ttf
以上是 Android上的CSS字体 的全部内容, 来源链接: utcz.com/qa/430808.html