简体   繁体   English

显示缩略图图像,直到使用jquery加载实际图像为止

[英]show thumb image until the actual image gets loaded using jquery

I want to show images like google search images.like when someone click on a particular image the thumb image get load first until the actual image get loaded,when the the actual image gets loaded the thumb is replaced by the actual image. 我想显示类似google search images的图像。例如,当某人单击特定图像时,拇指图像会先加载,直到加载实际图像为止,当加载实际图像时,拇指会替换为实际图像。

Please help me.Any help will be greatly appreciated. 请帮助我。任何帮助将不胜感激。

First you must know if you image is already loaded than you will replace it. 首先,您必须知道图像是否已加载,然后才能替换它。

   $('img.mustLoad').on('load',function(){
         /* Fire your image resize  or thumb replacement code here */
    });

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM