displayDiv.fadeIn(“3000”);在此网页上不会慢慢消失
从技术上讲,displayDiv.fadeIn('3000');图像应该慢慢淡出,但在此页面上却没有:
请参阅:http://jsfiddle.net/BpXbn /3/(悬停在“冰白色图像”上)
是否有可能的原因或解决此问题的方法,以便淡入淡出?
亲切的问候,
凯利
Technically displayDiv.fadeIn('3000'); should fade in the image slowly but on this page it does not:
Please see: http://jsfiddle.net/BpXbn/3/ (on hover of "ice white image")
Is there a possible reason for this or a way to fix this so the fade in works instead please?
Kind regards,
Kelly
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有名为“fadeIn”的内置 DOM 方法。也许您已经在某些 jQuery 代码或其他框架的代码中看到过它的使用。然而,如果您只是通过“getElementById()”从浏览器获取一个 DOM 元素,那么您得到的是一个普通的 DOM 元素,并且没有这样的函数。
There's no built-in DOM method called "fadeIn". Perhaps you've seen it used in some jQuery code, or code from some other framework. If you just get a DOM element from the browser via "getElementById()", however, what you get is a plain DOM element and that has no such function.