Sifr IE6+IE7 错误/不工作
我已经尝试让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您正在使用 3.0 alpha 1,您确实不应该使用它。 r436 是最新版本。
You're using 3.0 alpha 1, which you really shouldn't. r436 is the latest version.
尝试让 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.
我在这里找到了一个解决方案: 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;