查看: 1046|回复: 3
打印 上一主题 下一主题

[求助] CSS全局字体设置求助

[复制链接]

该用户从未签到

38

主题

655

回帖

7509

积分

翰林院编修

Rank: 11Rank: 11Rank: 11Rank: 11

积分
7509

翰林院专用章灌水大神章笑傲江湖章小蜜蜂章管理组专用章

跳转到指定楼层
1
发表于 2013-4-18 19:15:11 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 heshunyihugh 于 2013-4-18 19:24 编辑

按照R大的和样式表制作的CSS:

<STYLE TYPE="text/css">

/*定义一种普通字体*/

@font-face {
    font-family: 'Times_New_Roman';
    font-style: normal;
    font-weight: normal;
    src: url('content://mdict.cn/localfile/fonts/Times_New_Roman.ttf');
}

/*定义一种粗体字体*/

@font-face

@font-face {
    font-family: 'Times_New_Romanbd';
    font-style: normal;
    font-weight: normal;
    src: url('content://mdict.cn/localfile/fonts/Times_New_Romanbd.ttf');
}

/*定义一种斜体字体*/

@font-face

@font-face {
    font-family: 'Times_New_Romani';
    font-style: normal;
    font-weight: normal;
    src: url('content://mdict.cn/localfile/fonts/Times_New_Romani.ttf');
}

/*定义一种斜体&粗体字体*/

@font-face {
    font-family: 'Times_New_Romanbi';
    font-style: normal;
    font-weight: normal;
    src: url('content://mdict.cn/localfile/fonts/Times_New_Romanbi.ttf');
}

* {
    font-family: 'Times_New_Roman', serif
}
</STYLE>

然而效果,目测不是Times New Roman字体,头疼的很
请高手指点,谢谢!!!

该用户从未签到

45

主题

1420

回帖

1万

积分

管理员

Rank: 13Rank: 13Rank: 13Rank: 13

积分
10971

管理组专用章

2
发表于 2013-4-19 09:35:24 | 只看该作者
本帖最后由 rayman 于 2013-4-19 09:37 编辑

Er。。。我试试先。

该用户从未签到

45

主题

1420

回帖

1万

积分

管理员

Rank: 13Rank: 13Rank: 13Rank: 13

积分
10971

管理组专用章

3
发表于 2013-4-19 14:36:12 | 只看该作者
发现是程序有bug, 以后会修正。但目前非要用的话,src那里需要写成:
content://mdict.cn/localfile//Times_New.ttf 然后将Times_New.ttf放入到/mnt/sdcard/mdict/data/目录下. 注意localfile后面要有两个"/".

该用户从未签到

38

主题

655

回帖

7509

积分

翰林院编修

Rank: 11Rank: 11Rank: 11Rank: 11

积分
7509

翰林院专用章灌水大神章笑傲江湖章小蜜蜂章管理组专用章

4
 楼主| 发表于 2013-4-19 14:43:34 | 只看该作者
谢谢!!!