jQuery图片预加载 等比缩放实现代码


Posted in Javascript onOctober 04, 2011
/* 
* Image preload and auto zoom 
* scaling 是否等比例自动缩放 
* width 图片最大高 
* height 图片最大宽 
* loadpic 加载中的图片路径 
* example $("*").LoadImage(true,w,h); 
*/ 
jQuery.fn.LoadImage=function(scaling,width,height,loadpic){ 
if(loadpic==null)loadpic="../images/loading.gif"; 
return this.each(function(){ 
var t=$(this); 
var src=$(this).attr("src") 
var img=new Image(); 
//alert("Loading...") 
img.src=src; 
//自动缩放图片 
var autoScaling=function(){ 
if(scaling){ 
if(img.width>0 && img.height>0){ 
if(img.width/img.height>=width/height){ 
if(img.width>width){ 
t.width(width); 
t.height((img.height*width)/img.width); 
t.css("margin-top", (height-t.height())/2); 
}else{ 
t.width(img.width); 
t.height(img.height); 
t.css("margin-top", (height-t.height())/2); 
} 
} 
else{ 
if(img.height>height){ 
t.height(height); 
t.width((img.width*height)/img.height); 
t.css("margin-top", (height-t.height())/2); 
}else{ 
t.width(img.width); 
t.height(img.height); 
t.css("margin-top", (height-t.height())/2); 
} 
} 
} 
} 
} 
//处理ff下会自动读取缓存图片 
if(img.complete){ 
//alert("getToCache!"); 
autoScaling(); 
return; 
} 
$(this).attr("src",""); 
var loading=$("<img alt=\"加载中...\" title=\"图片加载中...\" src=\""+loadpic+"\" />"); 
t.hide(); 
t.after(loading); 
$(img).load(function(){ 
autoScaling(); 
loading.remove(); 
t.attr("src",this.src); 
t.show(); 
//alert("finally!") 
}); 
}); 
}
Javascript 相关文章推荐
关于document.cookie的使用javascript
Oct 29 Javascript
javascript 事件绑定问题
Jan 01 Javascript
jquery插件之信息弹出框showInfoDialog(成功/错误/警告/通知/背景遮罩)
Jan 09 Javascript
javascript实现当前页导航激活的方法
Feb 27 Javascript
jQuery实现文本展开收缩特效
Jun 03 Javascript
js实现获取当前时间是本月第几周的方法
Aug 11 Javascript
关于javascript中dataset的问题小结
Nov 16 Javascript
javascript中eval解析JSON字符串
Feb 27 Javascript
微信小程序利用co处理异步流程的方法教程
May 20 Javascript
如何能分清npm cnpm npx nvm
Jan 17 Javascript
vue项目中使用particles实现粒子背景效果及遇到的坑(按钮没有点击响应)
Feb 11 Javascript
JavaScript继承的三种方法实例
May 12 Javascript
jQuery EasyUI API 中文文档 - Menu菜单
Oct 03 #Javascript
Dom 结点创建 基础知识
Oct 01 #Javascript
JavaScript 的继承
Oct 01 #Javascript
Jquery 的扩展方法总结
Oct 01 #Javascript
jQuery EasyUI API 中文文档 - Tabs标签页/选项卡
Oct 01 #Javascript
jQuery EasyUI API 中文文档 - Panel面板
Sep 30 #Javascript
JQuery获取文本框中字符长度的代码
Sep 29 #Javascript
You might like
德生S2000收音机更换“钕铁硼”全频扬声器
2021/03/02 无线电
PHP 存储文本换行实现方法
2010/01/05 PHP
PHP 提取图片img标记中的任意属性的简单实例
2013/12/10 PHP
php可应用于面包屑导航的迭代寻找家谱树实现方法
2015/02/02 PHP
Yii框架使用魔术方法实现跨文件调用功能示例
2017/05/20 PHP
javascript 多级checkbox选择效果
2009/08/20 Javascript
基于Jquery的动态创建DOM元素的代码
2010/12/28 Javascript
jquery lazyload延迟加载技术的实现原理分析
2011/01/24 Javascript
文本域光标操作的jQuery扩展分享
2014/03/10 Javascript
js获取IP地址的方法小结
2014/07/01 Javascript
BOOTSTRAP时间控件显示在模态框下面的bug修复
2015/02/05 Javascript
jQuery跨域问题解决方案
2015/08/03 Javascript
JS实现可自定义大小,可双击关闭的弹出层效果
2015/10/16 Javascript
onclick和onblur冲突问题的快速解决方法
2016/04/28 Javascript
对Vue table 动态表格td可编辑的方法详解
2018/08/28 Javascript
axios取消请求的实践记录分享
2018/09/26 Javascript
jQuery实现适用于移动端的跑马灯抽奖特效示例
2019/01/18 jQuery
详解滑动穿透(锁body)终极探索
2019/04/16 Javascript
Node4-5静态资源服务器实战以及优化压缩文件实例内容
2019/08/29 Javascript
一看就会的vuex实现登录验证(附案例)
2020/01/09 Javascript
详解vue父子组件状态同步的最佳方式
2020/09/10 Javascript
Python 中开发pattern的string模板(template) 实例详解
2017/04/01 Python
Python3中条件控制、循环与函数的简易教程
2017/11/21 Python
Python中的十大图像处理工具(小结)
2019/06/10 Python
Python 的AES加密与解密实现
2019/07/09 Python
wxPython实现带颜色的进度条
2019/11/19 Python
Python Django2.0集成Celery4.1教程
2019/11/19 Python
思想汇报范文
2013/11/04 职场文书
简单英文演讲稿
2014/01/01 职场文书
2014年乡镇民政工作总结
2014/12/02 职场文书
2014年检察院个人工作总结
2014/12/09 职场文书
自主招生自荐信范文
2015/03/04 职场文书
超市啤酒狂欢夜策划方案范文!
2019/07/03 职场文书
创业计划书之孕婴生活馆
2019/11/11 职场文书
详解Vue项目的打包方式(生成dist文件)
2022/01/18 Vue.js
让JavaScript代码更加精简的方法技巧
2022/06/01 Javascript