缓存后淡入高分辨率图像
在客户端缓存高分辨率图像后,是否有一种最好的方法可以使用 javascript/jquery 优雅地淡入高分辨率图像,类似于 Bing 或 Yahoo Mail 的方式?
Is there a best way to gracefully fade in high-res images with javascript/jquery after the client has cached it, similar to the way Bing or Yahoo Mail does it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找 jQuery 中的加载函数。这是一个示例:
jQuery 参考: http://api.jquery.com/load-event/祝您
编码愉快!
You're looking for the load function in jQuery. Here is an example:
And the jQuery reference: http://api.jquery.com/load-event/
Happy coding!
预加载图像时,我总是这样做:
效果很好。
When preloading an image, I always do this :
It works well.