sIFR3 在加载时显示文本

发布于 2024-08-03 01:07:18 字数 149 浏览 3 评论 0原文

我在网站上使用 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 技术交流群。

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

发布评论

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

评论(1

野侃 2024-08-10 01:07:18

sIFR 2 中存在的功能在 sIFR 3 中不再存在。不过,您可以像这样实现相同的效果:

sIFR.autoInitialize = false;
sIFR.activate(movie);
sIFR.removeFlashClass();

sIFR.replace(movie, { selector: 'h1' });

window.onload = function(){
  sIFR.setFlashClass();
  sIFR.initialize();
};

当然,其中 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:

sIFR.autoInitialize = false;
sIFR.activate(movie);
sIFR.removeFlashClass();

sIFR.replace(movie, { selector: 'h1' });

window.onload = function(){
  sIFR.setFlashClass();
  sIFR.initialize();
};

Where, of course, movie is the appropriate variable that references the Flash movie. You might want to connect to the onload event through another JavaScript framework. You must wait until full page load, things like $(document).ready() (jQuery) will not work reliably cross-browser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文