sIFR 无法显示正确文本的问题
我正在尝试在我的网站上使用 sIFR(带有 jQuery sIFR 插件),但从一开始就遇到了问题。 我能够使用我选择的字体创建 swf,但是当我运行脚本时,我只得到默认的“使用 sIFR3 渲染”消息,而不是我的元素的文本。
有任何想法吗?
正如 Novemberborn 本人指出的那样,我确实将 sIFR 升级到了版本 3,而 jQuery 插件仅支持 v2。 我尝试恢复到 sIFR (v2.0.5) 的打包版本:
我的 HTML:
<h1 class="img">Why should I do ELBC?</h1>
jQuery:
$(":header.img")
.sifr({
path : 'lib/sifr/2',
font : 'test',
width: 900,
height: 60
})
;
lib/sifr/2/test.swf
文件只是打包的 .fla
文件已编译。
这次看起来它确实在做一些事情:正确的文本出现了,但它很小。 比如,4pt 大小。
I'm trying to use sIFR (with the jQuery sIFR plugin) on my website, but have run into problems right from the start. I was able to create the swf with my chosen font, but when I run the script, I just get the default "Rendered with sIFR3" message instead of the text of my element.
Any ideas?
As Novemberborn himself pointed out, I did upgrade sIFR to version 3, whereas the jQuery plugin only supports v2. I've tried reverting back to the packaged version of sIFR (v2.0.5):
My HTML:
<h1 class="img">Why should I do ELBC?</h1>
jQuery:
$(":header.img")
.sifr({
path : 'lib/sifr/2',
font : 'test',
width: 900,
height: 60
})
;
The lib/sifr/2/test.swf
file is just the packaged .fla
file compiled.
It looks like it's actually doing something this time: the correct text is showing up, but it's tiny. Like, 4pt size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jQuery 插件使用 sIFR 2,但是您似乎使用的是(旧的)sIFR 3 电影。
The jQuery plugin uses sIFR 2, however you seem to be using an (old) sIFR 3 movie.
在我看来,swf 文件已损坏(例如在导出期间)。
您可以通过将 swf 文件替换为预构建文件之一(通过 sIFR 分发)来确定这一点 - 这样您就可以知道问题是在 javascript 还是在 flash 中。 不管怎样 - 你能发布更多细节吗?
It seems to me that the swf file has been broken (e.g. during export).
You can determine this by replacing your swf file with one of the pre-built ones (distributed with sIFR) - this way you'll know whether the problem is in the javascript or in the flash. Either way - could you post more details?
是的,我遇到了同样的问题,我花了一段时间才发现这不是脚本或其他任何问题; 这只是正在使用的脚本和 swf 之间不兼容。
尝试使用不同的导出选项以使它们兼容 - 我使用 sifrgenerator.com 从字体生成 swf 文件。 希望能帮助到你。
http://www.baradesign.com.au
Yeah I had the same problem and it took me a while to figure that it wasn't a problem with scripts or anything; it was simply incompatibility between the script being used and the swf.
Have a play with different export options to get them compatible - I use sifrgenerator.com to generate the swf file from the font. Hope it helps.
http://www.baradesign.com.au