0
我有一個HTML頁面,它使用fontface作爲日文字體。它在瀏覽器中完美運行。當我檢查Appcelerator Titanuim中的html5移動應用程序時,它在刺激器和設備中均失敗。請指導我如何克服這一點。我的語法是:提前HTML FontFace在safari中工作,而不是在刺激器中 - Appcelerator Titanium
@font-face {
font-family: 'Japanese';
font-style: normal;
font-weight: normal;
src: local('Japanese'), url('css/Japanese.ttf') format('truetype');
}
.Japanese {
font-family: Japanese, sans-serif;
}
感謝,GANESH中號