输入字段中嵌入字体的问题

发布于 2024-10-21 21:36:07 字数 497 浏览 1 评论 0原文

我正在尝试通过 CSS 在我的 Flex 项目中嵌入使用 css 的字体:

@font-face {
    src: url("/slimCurves.ttf");
    fontFamily: SlimCurves;
    embedAsCFF: true;
    font-weight:normal;
}


.slimCurves
{
    fontFamily: SlimCurves;
    fontLookup: embeddedCFF;
    fontSize: 15px;
}

当我尝试将样式应用于文本输入字段时,输入字段会丢失其现有样式,但似乎不会继承自定义样式。

<s:TextInput width="100%" fontSize="33" text="test" styleName="slimCurves"/>

如果我将相同的样式应用于标签,标签将按预期显示自定义字体的文本。有什么想法吗?

I'm trying to embed a font using css on in my flex project via CSS:

@font-face {
    src: url("/slimCurves.ttf");
    fontFamily: SlimCurves;
    embedAsCFF: true;
    font-weight:normal;
}


.slimCurves
{
    fontFamily: SlimCurves;
    fontLookup: embeddedCFF;
    fontSize: 15px;
}

When I try to apply the style to a text input field the input field looses its existing style, but doesn't seem to inherit the custom one.

<s:TextInput width="100%" fontSize="33" text="test" styleName="slimCurves"/>

If I apply the same style to a label, the label shows the text in the custom font as would be expected. Any ideas?

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

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

发布评论

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

评论(2

公布 2024-10-28 21:36:07

看来这与所选主题有关。选择不同的模板似乎已经解决了这个问题。

Looks like this had something to do with the selected theme. Selecting a different template seems to have resolved this issue.

Saygoodbye 2024-10-28 21:36:07

我认为问题是由于按钮文本默认为粗体。
您仅创建普通字体,而不创建粗体字体。

我通常使用这个代码:

@font-face{
   src: url("FONT.TTF");
   fontFamily: DAX2;
   font-weight:normal;
}
@font-face{
   src: url("FONT.TTF");
   fontFamily: DAX2;
   font-weight:bold;
}

亲切的问候,
克劳迪奥

I think the problems is due to the fact that Buttons Text is by default in BOLD.
You are creating only the normal Font and not the bold one.

I usually use this code:

@font-face{
   src: url("FONT.TTF");
   fontFamily: DAX2;
   font-weight:normal;
}
@font-face{
   src: url("FONT.TTF");
   fontFamily: DAX2;
   font-weight:bold;
}

Kind regards,
Claudio

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