sIFR 3 大写
有人可以解释一下我如何实现 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
text-transform
属性添加到传递给sIFR.replace
方法的选项对象的css
属性中的 CSS 规则(唷!)。一个例子:
You would add the
text-transform
property to the CSS rules in thecss
property of the options object passed to thesIFR.replace
method (phew!).An example: