Javascript 动画在 IE7 或 8 中无法正常工作
我正在尝试让 JavaScript 动画在 IE 7 和 8 中工作。它是一个自启动动画,使用暂停和延迟来计时对象淡入淡出的顺序。它在 FF 和 Safari 中工作正常,但在 IE 7/8 中,所有元素在页面加载时都可见,而不是遵循淡入的时间和顺序。不确定可能是什么问题。任何帮助都会很棒,谢谢!
I am trying to get a javascript animation to work in IE 7 and 8. It is a self-starting animation that uses pauses and delays to time the sequence of object fadeins. it works fine in FF AND Safari but in IE 7/8 instead of following the timing and sequence of the fade ins, all of the elements are visible on page load. Not sure what could be the problem. Any help would be great,Thanks!
link to animation: http://pushdesign.net/medley/ie/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您正在尝试将不透明度默认为 0:
IE 不尊重
opacity
- 您必须包含非标准filter
:的范围alpha(opacity=x...y)
是 0 到 100,尽管这里只需要 0,因为您希望事物完全不可见。it looks like you are trying to default opacity to 0 with this:
IE does not respect
opacity
- you have to include the non-standardfilter
:the range for
alpha(opacity=x...y)
is 0 to 100, although 0 is all you need here since you want things to be totally invisible.