Javascript 动画在 IE7 或 8 中无法正常工作

发布于 2024-11-03 11:36:08 字数 264 浏览 1 评论 0原文

我正在尝试让 JavaScript 动画在 IE 7 和 8 中工作。它是一个自启动动画,使用暂停和延迟来计时对象淡入淡出的顺序。它在 FF 和 Safari 中工作正常,但在 IE 7/8 中,所有元素在页面加载时都可见,而不是遵循淡入的时间和顺序。不确定可能是什么问题。任何帮助都会很棒,谢谢!

动画链接:http://pushdesign.net/medley/ie/

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 技术交流群。

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

发布评论

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

评论(1

混吃等死 2024-11-10 11:36:08

看起来您正在尝试将不透明度默认为 0:

.segment { opacity: 0 }

IE 不尊重 opacity - 您必须包含非标准 filter

.segment { opacity: 0 
           filter: alpha(opacity = 0); }

的范围alpha(opacity=x...y) 是 0 到 100,尽管这里只需要 0,因为您希望事物完全不可见。

it looks like you are trying to default opacity to 0 with this:

.segment { opacity: 0 }

IE does not respect opacity - you have to include the non-standard filter:

.segment { opacity: 0 
           filter: alpha(opacity = 0); }

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.

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