siFR 3,某些 Javascript 参数没有功能问题
我正在尝试使用 siFR 3。我需要设置 flash 元素以使用替换文本的最大宽度。 Flash 文本的宽度可以使用 200px MAX。
以下代码的问题是
这是我的测试代码:
sIFR.replace(myFont, { 选择器:'.myDiv' ,CSS:{ '.sIFR-root': { '颜色': '#077cd7' } } ,forceSingleLine: true , fitExactly: true // !!!什么都不改变 ,tuneWidth:200 //!!!什么都不改变 , 透明: true });
预先感谢您提供任何建议或其他信息。
I'm trying to use siFR 3. I need set to the flash element to use max width for a text replaced. The width of flash text can use 200px MAX.
The problem of the following code is that
Here's is my test code :
sIFR.replace(myFont, { selector: '.myDiv' , css: { '.sIFR-root': { 'color': '#077cd7' } } , forceSingleLine: true , fitExactly: true // !!! Change nothing , tuneWidth: 200 // !!! Change nothing , transparent: true });
Thank in advance for any advice or else informations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您要替换的 HTML 元素的最大宽度为 200 像素。
tuneWidth
添加 Flash 影片的宽度,这样只会使其变大。Make sure the HTML element you are replacing has a max width of 200px.
tuneWidth
adds to the width of the Flash movie, so that'll only make it larger.