我有一个免费的cufon模板,我想将其更改为阿拉伯语。 它由两个与语言相关的文件组成:
LiberationSans.font.js
cufon-yui.js
我用“Tahoma.font.js”改变了“LiberationSans.font.js”,但它仍然不起作用。
感谢您的建议......
答案 0 :(得分:3)
你可以使用bifon字体生成器,它就像cufon但是为rtl
波斯语制作
请在DOWNLOAD LINK
这个软件专为波斯语设计,也可以用阿拉伯语。
答案 1 :(得分:0)
用css嵌入字体 例如
@font-face {
font-family:a-remote-font-name;
src: source url;
[font-weight:XXpx];
[font-style:regular html style];
}
添加到HTML标题<link href="./font-face.css" rel="stylesheet" type="text/css" />
并且CSS应该是
@font-face {
font-family: "Gideas Font-face Demo";
font-weight: normal;
src: local("âک؛"), url("fonts/thickTitleFont.ttf") format("truetype");
}
#font-face-arabic-text-title
{
margin:auto;
width:400px;
font: 150% 'Gideas Font-face Demo','Simplified Arabic';
color:blue;
font-size:40px;
direction:rtl;
}