sIFR 3 大写

发布于 2024-07-30 10:21:51 字数 334 浏览 4 评论 0原文

有人可以解释一下我如何实现 text-transform: uppercase; sIFR 3 的功能?

在文档中,它解释了如何使用它,但我真的不知道如何实现它。 有人可以举个例子吗?

指定文本转换。 这是 由 sIFR 处理,因为 Flash 不 原生支持这个。 它被应用 到所有文本,如果你想应用它 到您需要的特定元素 使用修改内容函数。 如果 sIFR.forceTextTransform 为 false,sIFR 不会执行转换。

谢谢

Can someone please explain how can I implement text-transform: uppercase; feature with sIFR 3?

On the doc, it explains how to use it but I really don't know how to implement it. Can someone provide an example?

Specifes text transformation. This is
handled by sIFR because Flash does not
support this natively. It is applied
to all text, if you want to apply it
to a specific element you'll need to
use the modifyContent function. If
sIFR.forceTextTransform is false, sIFR
will not perform the transformation.

Thanks

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

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

发布评论

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

评论(1

人间☆小暴躁 2024-08-06 10:21:51

您可以将 text-transform 属性添加到传递给 sIFR.replace 方法的选项对象的 css 属性中的 CSS 规则(唷!)。

一个例子:

sIFR.replace(myFont, {
  selector: 'h2',
  css: '.sIFR-root { font-size: 20px; color: #008cba; text-transform: uppercase; }',
  wmode: 'transparent'
});

You would add the text-transform property to the CSS rules in the css property of the options object passed to the sIFR.replace method (phew!).

An example:

sIFR.replace(myFont, {
  selector: 'h2',
  css: '.sIFR-root { font-size: 20px; color: #008cba; text-transform: uppercase; }',
  wmode: 'transparent'
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文