Scriptaculous 幻灯片切换效果在 IE6 中不起作用
我遇到了 IE6 和 Scriptaculous 的滑动切换效果的问题。这是脚本:
Event.observe(window, 'load', init, false);
function init() {
Effect.toggle('shipping_box','slide');
return false;
}
它适用于所有浏览器(包括 IE 7/8),但不适用于 IE 6..我不知道为什么..
I'm facing an issue with IE6 and a slide toggle effect by Scriptaculous. This is the script:
Event.observe(window, 'load', init, false);
function init() {
Effect.toggle('shipping_box','slide');
return false;
}
It's working well with all browsers (included IE 7/8) but not in IE 6..and I don't know why..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决了。问题涉及滑动 div 中包含的 png 图像的尺寸。
IE6 在此站点中使用“修复 png”脚本,并且需要尺寸才能工作。
我没有给它们成像,因此什么也没有出现。
I solved. Issue concerned the dimensions of a png image included in the sliding div.
IE6 uses a 'fix png' script in this site and needs dimensions in order to work.
I didn't give them to image and thus nothing appeared.