Sifr IE6+IE7 错误/不工作

发布于 2024-07-29 21:06:52 字数 872 浏览 5 评论 0原文

我已经尝试让 Sifr3 工作几个小时了,它在 Safari 和 Firefox 中工作正常,但在 IE6 和 Firefox 中却不行。 IE7。

我检查了 Flash 版本+发现问题可能出在我添加的 media="" 定义中。

这是我使用的代码:

sIFR.预取({ src: 'myriad.swf' }, { src: 'myriader.swf' }); sIFR.compatMode = true; sIFR.activate(); sIFR.replace({ 选择器: 'h1.pak', src: 'myriad.swf', css: { '.sIFR-root' : { '颜色': '#ed1c24', '字体粗细': '正常' }, }, wmode: '透明',paddingTop:10 }); sIFR.replace({ 选择器: 'h2.pak,h3.pak', src: 'myriader.swf', css: { '.sIFR-root' : { '颜色': '#ed1c24', '字体粗细': '正常' }, }, wmode: '透明', paddingTop: 0 });

如果您想查看该页面,可以转到此处:www.e-mkb.nl /pakketten.htm

我真的希望有人能够帮助我解决这个问题。 预先感谢,

菲利普

I've been trying to get Sifr3 to work for hours now, it works fine in Safari and Firefox, but doesn't in IE6 & IE7.

I've checked the Flash version + found somewhere the problem could lay in media="" definition which i added.

Here are the codes I use:

sIFR.prefetch({
src: 'myriad.swf' }, {
src: 'myriader.swf' });

sIFR.compatMode = true;
sIFR.activate();

sIFR.replace({ selector: 'h1.pak',
src: 'myriad.swf', css: {
'.sIFR-root' : { 'color': '#ed1c24',
'font-weight': 'normal' }, }, wmode:
'transparent', paddingTop: 10 });

sIFR.replace({ selector:
'h2.pak,h3.pak', src: 'myriader.swf',
css: { '.sIFR-root' : { 'color':
'#ed1c24', 'font-weight': 'normal' },
}, wmode: 'transparent', paddingTop: 0
});

If you want to have a look at the page you can go here: www.e-mkb.nl/pakketten.htm

I really hope someone will be able to help me out on this.
Thanks in advance,

Philippe

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

长安忆 2024-08-05 21:06:52

您正在使用 3.0 alpha 1,您确实不应该使用它。 r436 是最新版本。

You're using 3.0 alpha 1, which you really shouldn't. r436 is the latest version.

蔚蓝源自深海 2024-08-05 21:06:52

尝试让 sIFR 3 r436 与 IE 一起使用。 IE 给出一些通用的 JavaScript 错误。 删除 wmode: 'transparent' 似乎有帮助,但我仍然需要该 wmode 用于灯箱。

Trying to get sIFR 3 r436 to work with IE. IE gives some generic javascript error. Removing wmode: 'transparent' seems to help but I still need that wmode for lightbox.

我爱人 2024-08-05 21:06:52

我在这里找到了一个解决方案: http://www.mikebuckley .me/2009/10/sifr-transparent-wmode-in-ie6/

基本上你只需要在 sIFR.activate(..); 之后添加以下代码行即可 :

sIFR.repaintOnResize = false;

I found a solution here: http://www.mikebuckley.me/2009/10/sifr-transparent-wmode-in-ie6/

basically you just need to add the following code line after sIFR.activate(..); :

sIFR.repaintOnResize = false;

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