Flex 4 更改默认字体

发布于 2024-11-05 04:39:17 字数 581 浏览 4 评论 0原文

如何安装粗体和普通的多种字体,我正在尝试更改默认字体。

<fx:Style>
    @namespace s "library://ns.adobe.com/flex/spark";
    @namespace mx "library://ns.adobe.com/flex/mx";
    @namespace assets "assets.*";
    @namespace comp "comp.*";

    @font-face {
        font-family: localVerdana;
        src: url("assets/verdana.ttf");
        src: url("assets/verdanab.ttf");
    }

    s|Label {
        font-family: localVerdana;
    }

    s|TextInput {
        font-family: localVerdana;
    }

    s|TextArea {
        font-family: localVerdana;
    }

</fx:Style>

How do I install multiple fonts for both bold and normal, I am trying to change the default font.

<fx:Style>
    @namespace s "library://ns.adobe.com/flex/spark";
    @namespace mx "library://ns.adobe.com/flex/mx";
    @namespace assets "assets.*";
    @namespace comp "comp.*";

    @font-face {
        font-family: localVerdana;
        src: url("assets/verdana.ttf");
        src: url("assets/verdanab.ttf");
    }

    s|Label {
        font-family: localVerdana;
    }

    s|TextInput {
        font-family: localVerdana;
    }

    s|TextArea {
        font-family: localVerdana;
    }

</fx:Style>

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

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

发布评论

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

评论(1

堇色安年 2024-11-12 04:39:17

您需要为您使用的每种样式、字体粗细有一个 @font-face 声明

@font-face
{
    src:                    url("assets/verdana.ttf");
    font-family:            localVerdana;
    font-style:             normal;
    font-weight:            normal;
    embed-as-cff:           true;
    advanced-anti-aliasing: true;

}

@font-face
{
    src:                    url("assets/verdanab.ttf");
    font-family:            localVerdana;
    font-style:             normal;
    font-weight:            bold;
    embed-as-cff:           true;
    advanced-anti-aliasing: true;

}

You need to have one @font-face declaration for each style, weight of font you use

@font-face
{
    src:                    url("assets/verdana.ttf");
    font-family:            localVerdana;
    font-style:             normal;
    font-weight:            normal;
    embed-as-cff:           true;
    advanced-anti-aliasing: true;

}

@font-face
{
    src:                    url("assets/verdanab.ttf");
    font-family:            localVerdana;
    font-style:             normal;
    font-weight:            bold;
    embed-as-cff:           true;
    advanced-anti-aliasing: true;

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