我正在使用自定义字体样式在PhoneGap中做一个应用程序。字体样式采用浏览器,而不采用Android手机。

<style>
 @font-face {
        font-family: 'CooperStd';
        src: url('fonts/cooperblackstd.eot');
        src: url('fonts/cooperblackstd.eot?#iefix') format('embedded-opentype'),
            url('fonts/cooperblackstd.woff') format('woff'),
            url('fonts/cooperblackstd.ttf')  format('truetype'),
            url('fonts/cooperblackstd.svg#CooperBlackStd') format('svg');
        font-weight: 900;
        font-style: normal;
    }


body{font-family:'CooperStd' , arial ;   }

</style>

我检查了字体路径,也检查浏览器中的控制台是否正确。我没有发现任何错误。

提前致谢

最佳答案

您可以尝试从根文件夹尝试相对路径吗?

src: url('fonts/cooperblackstd.eot');

尝试
src: url('/fonts/cooperblackstd.eot');

假定字体是与www文件夹下的.html文件处于同一级别的文件夹。

问候,

07-27 17:10