sIFR3 在加载时显示文本
我在网站上使用 sIFR3。我记得在 sIFR2 中你可以使用这个 sIFR.bHideBrowserText = false;在 sIFR 启动之前显示文本。
在 sIFR3 中如何执行此操作以及将代码放在哪里?
感谢您的帮助。
C
I am using sIFR3 on a website. I remember in sIFR2 you coul use this sIFR.bHideBrowserText = false; to show the text before sIFR kicks in.
How do you do this in sIFR3 and where do you put the code?
Thanks for your help.
C
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sIFR 2 中存在的功能在 sIFR 3 中不再存在。不过,您可以像这样实现相同的效果:
当然,其中
movie
是引用 Flash 影片的适当变量。您可能希望通过另一个 JavaScript 框架连接到onload
事件。您必须等到整个页面加载,诸如$(document).ready()
(jQuery)之类的东西无法跨浏览器可靠地工作。The feature as it existed in sIFR 2 no longer exists in sIFR 3. You could achieve the same affect like this, though:
Where, of course,
movie
is the appropriate variable that references the Flash movie. You might want to connect to theonload
event through another JavaScript framework. You must wait until full page load, things like$(document).ready()
(jQuery) will not work reliably cross-browser.