使用 jquery 使图像在图像加载时淡入
我有一个充满图像的页面,我希望每个图像在加载时淡入。我有以下代码,它可以工作,但似乎有问题,基本上有时并非所有图像都会淡入。
有人对如何改进它有任何建议吗?
谢谢
$('.contentwrap img').hide().load(function () {
$(this).fadeIn(1000);
});
I have a page full of images and I want each of them to fade in when loaded. I have the following code which works but seems buggy, basically sometimes not all the image fade in.
Does anyone have any suggestions of how to improve this.
Thanks
$('.contentwrap img').hide().load(function () {
$(this).fadeIn(1000);
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(11)
是的,这通常是一个相当基本的问题:某些图像在为它们分配加载事件处理程序之前就完成了加载。当图像被缓存时,这种情况尤其可能发生。
不幸的是,如果图像位于 HTML 中,唯一可靠的方法是包含一个(极其丑陋的)内联 onload 属性:
Yeah, this is typically a fairly basic problem: some images finish loading before you've assigned them a load event handler. This is especially likely when the images are cached.
If the images are in the HTML the only reliable way is, unfortunately, to include an (extremely ugly) inline onload attribute:
如果图像是从浏览器缓存加载的,则加载事件可能不会被触发。为了解释这种可能性,我们可以测试图像的 .complete 属性的值。
It is possible that the load event will not be triggered if the image is loaded from the browser cache. To account for this possibility, we can test the value of the image's .complete property.
将这段代码放在站点的部分中:
这可能不是最有说服力的解决方案,但它可以完成工作。如果您想查看它的实际示例,请查看我使用它的网站。
Place this bit of code in the section of the site:
This may not be the most eloquent solution, but it gets the job done. If you would like to see an example of it in action, check out this site I used it for.
您可以首先使用一些 CSS 确保默认情况下隐藏您的图像(消除对 jQuery
hide
调用的需要),然后,在您的 document.ready 中,您可以尝试以下操作。我承认这里会有一些冗余,因为某些图像可能(在幕后)尝试淡入两次,但最终结果看起来是一样的。这是我在试图给出一个简单答案时承认的权衡。
情况是,在您的 document.ready 中,某些图像可能已加载(尤其是那些已缓存的图像),而某些图像可能尚未加载。
由于 jQuery 会“堆叠”您的动画效果,一旦某些内容完全淡入,您可以再次对其调用 fadeIn,并且不会(明显)发生任何事情。
如果这是不可接受的,您可能可以设计一些更复杂的方法来检查哪些图像已淡入,哪些尚未淡入,然后再设置加载事件。
祝你好运!
You could first make sure that your images are hidden by default (eliminating need for your jQuery
hide
calls) with some CSS,And then, in your document.ready, you could try the following. I'll admit there will be some redundancies here in that some images may (behind the scenes) be trying to fade in twice, but the end result will look just the same. This is the tradeoff I'll admit in trying to give a simple answer to this.
The situation will be that in your document.ready, some images may have loaded (especially those that were already cached) and some may yet be pending.
Since jQuery will "stack" your animation effects, once something is fully faded-in, you can call fadeIn on it again, and nothing should (visibly) happen.
If this was unacceptable, you could probably devise some more complex way of checking which images have been faded in and which have not, before you set the load event on them.
Good luck!
我刚刚在此线程中回答了这个问题: jQuery 如何让图像在加载时淡入?
对我有用!
I just answered this over at this thread: jQuery How do you get an image to fade in on load?
Works for me!
您在 Document.ready 中调用该函数吗?
http://www.learningjquery.com/2006/09/introducing-document-准备好了
are you calling that function in the Document.ready?
http://www.learningjquery.com/2006/09/introducing-document-ready
我最近处理了这个烂摊子。我回答了这个类似的问题,但这并不完全是你要问的...
使用 JavaScript 获取图像的真实宽度和高度? (在 Safari/Chrome 中)
I recently dealt with this mess. I answered this similar question, but it's not exactly what you're asking...
Get the real width and height of an image with JavaScript? (in Safari/Chrome)
将您的代码放入该函数中。如果你使用 $(document) 它会在 dom 加载后立即工作。如果您使用主体,则一旦主体满载就会启动。这样,在加载正文后,您的图像将始终淡入。
put your code inside of this function. If you use $(document) it works as soon as the dom is loaded. If you use body it starts once the body is fully loaded. That way your images will always fade in after the body is loaded.
为了处理缓存的图像,bobince 的解决方案是有效的,但正如他所说,它相当难看。
另一个解决方案是在 css 中隐藏图像并使用以下 javascript:
这样,大多数图像都会正确加载,如果它们被缓存并立即隐藏(加载函数没有时间被触发),则页面的加载事件会让他们出现。
页面的加载事件确保所有内容都已加载。
To deal with cached images, bobince's solution works, but as he said, it's quite ugly.
Another solution would be to hide your images in css and use the following javascript:
This way, most images are loaded properly, and if they were cached, and hidden right away (the load function not having time to be fired), the page's load event will make them appear.
The page's load event ensures that everything was loaded.
我使用 David DeSandro 的酷脚本来检查图像是否已加载。
(例如,您可以编写一个函数,向加载的图像添加一个类,这样它们就会使用 css 过渡淡入淡出。查看一下:
http://desandro.github.io/imagesloaded/
I use the cool script of David DeSandro to check if images have loaded.
(e.g. you can write a function which adds a class to the loaded images, so they will fade in using css transition. check it out:
http://desandro.github.io/imagesloaded/
您可以将所有图像放入一张图像中,然后将其淡入,但随后它们都会同时出现,这将是一个大文件。这取决于你想用它做什么。
You could take all the images and put them into one image and fade that in, but then they all come in at the same time, and it will be a big file. It depends what you want to use it for.