DIV 显示隐藏仅在 IE 中闪烁
我在显示由 MouseOver 触发的图像时遇到问题(请参阅:http://camera.vu.nl/ v2) 在 Safari 和 Firefox 中没问题。在 IE 中,当您将文本移动到带有 blob 图像的可见背景图层时,该图层会打开和关闭,导致闪烁。 我使用 Dreamweaver CS4 中的标准选项构建它。
任何人都可以帮助我避免 IE 中的这种闪烁而不破坏页面的想法吗?
非常感谢!
马可
I've got a problem with showing images triggered by a MouseOver (see: http://camera.vu.nl/v2)
In Safari and Firefox it's ok. In IE when you move of the text onto the Visible background layer with the blob-image, the layer is turned on and off leading to flickering.
I build it using the standard options in Dreamweaver CS4.
Can anyone please help me avoid this flicker in IE without destroying the idea of the page?
Thanks ever so much!
Marco
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我在 div 上添加鼠标悬停和鼠标移出时,我遇到了这个问题,该 div 显示了一个 div,该 div 覆盖了设置了 mouseout 事件的 div。
是这样吗?如果是这样,那么当 div 显示时,它将触发鼠标移出事件,然后在鼠标悬停和鼠标移出时陷入循环,直到您真正将指针移出。
如果没有,您可以发布一些代码示例吗?
I've had this problem when I've added a mouseover and mouse out on a div which showed a div which covered the div which had the mouseout event set.
Is this the case? If so, then when the div shows, it will fire the mouse out event and then end up in a loop on mouseover and mouseout until you truly move the pointer out.
if not, could you post some code sample?