cufon 如何支持阿拉伯语?

发布于 2024-11-28 16:44:46 字数 196 浏览 2 评论 0原文

我有一个免费的 cufon 模板,我想将其更改为阿拉伯语。 它由两个与语言相关的文件组成:

LiberationSans.font.js
cufon-yui.js

我将“LiberationSans.font.js”更改为“Tahoma.font.js”,但它仍然不起作用。

谢谢你的建议...

I have a free cufon template and I want to change it to Arabic.
it's consist of two files that related to language:

LiberationSans.font.js
cufon-yui.js

I changed "LiberationSans.font.js" with "Tahoma.font.js" , but It still does not work.

Thanks for your advice ...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ㄟ。诗瑗 2024-12-05 16:44:46

您可以使用 bifon 字体生成器,它类似于 cufon 但专为 rtl 波斯语
下载示例:下载链接

该软件专为波斯语设计,也可以使用阿拉伯语。

You can use bifon font generator , it's like cufon but made for rtl persian language
Download it with examples at DOWNLOAD LINK

this software designed for persian language and can work arabic too .

泪痕残 2024-12-05 16:44:46

用css嵌入字体
例如。

@font-face {
  font-family:a-remote-font-name;
  src: source url;
  [font-weight:XXpx];
  [font-style:regular html style];
}

添加到 HTML 头

并且 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;
}

embed the fonts with css
eg.

@font-face {
  font-family:a-remote-font-name;
  src: source url;
  [font-weight:XXpx];
  [font-style:regular html style];
}

add to HTML head <link href="./font-face.css" rel="stylesheet" type="text/css" />

and the CSS should be something that

@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;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文