js实现上传图片准时预览__第1页
js实现上传图片准时预览__第2页
js实现上传图片准时预览__第3页
js实现上传图片准时预览__第4页
js实现上传图片准时预览__第5页
免费预览已结束,剩余3页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、js实现上传图片准时预览_ 这篇文章主要为大家具体介绍了js实现上传图片准时预览的相关资料,具有肯定的参考价值,感爱好的伴侣可以参考一下 本文实例为大家分享了javascript图片预览功能实现的具体代码,供大家参考,具体内容如下 先为大家分享一段关于js图片预览的代码,兼容火狐和谷歌扫瞄器 /* 案例展现图片预览 */ $(function() $(#file0).bind(change,function() clickupLoad(); ); ); function clickupLoad() var imgObject = document.getElementById(file0);

2、var getImageSrc = getFullPath(imgObject); / 本地路径 var srcs = window.URL.createObjectURL(imgObject.files0); var pos = getImageSrc.lastIndexOf(.); var lastname = getImageSrc.substring(pos, getImageSrc.length) / 图片后缀 if(srcs!=) $(#yulan2).attr(src,srcs); else alert(请选择一张图片); function getFullPath(obj) /得

3、到图片的完整路径 if (obj) if (window.navigator.userAgent.indexOf(MSIE) = 1) obj.select(); return document.selection.createRange().text; else if(window.navigator.userAgent.indexOf(Firefox) = 1) if (obj.files) return window.URL.createObjectURL(obj.files0); return obj.value; return obj.value; 实例代码实现js上传图片准时预览:

4、 html head meta http-equiv=Content-Type content=text/html; charset=utf-8 / title图片上传本地预览/title style type=text/css #previewwidth:260px;height:190px;border:1px solid #000;overflow:hidden; #imghead filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=image); /style script type=text/j

5、avascript /图片上传预览 IE是用了滤镜。 function previewImage(file) var MAXWIDTH = 260; var MAXHEIGHT = 180; var div = document.getElementById(preview); if (file.files file.files0) div.innerHTML =img id=imghead; var img = document.getElementById(imghead); img.onload = function() var rect = clacImgZoomParam(MAXWI

6、DTH, MAXHEIGHT, img.offsetWidth, img.offsetHeight); img.width = rect.width; img.height = rect.height; / img.style.marginLeft = rect.left+px; img.style.marginTop = rect.top+px; var reader = new FileReader(); reader.onload = function(evt)img.src = evt.target.result; reader.readAsDataURL(file.files0);

7、else /兼容IE var sFilter=filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale,src=; file.select(); var src = document.selection.createRange().text; div.innerHTML = img id=imghead; var img = document.getElementById(imghead); img.filters.item(DXImageTransform.Microsoft.AlphaImage

8、Loader).src = src; var rect = clacImgZoomParam(MAXWIDTH, MAXHEIGHT, img.offsetWidth, img.offsetHeight); status =(rect:+rect.top+,+rect.left+,+rect.width+,+rect.height); div.innerHTML = div id=divhead style=width:+rect.width+px;height:+rect.height+px;margin-top:+rect.top+px;+sFilter+src+/div; functio

9、n clacImgZoomParam( maxWidth, maxHeight, width, height ) var param = top:0, left:0, width:width, height:height; if( widthmaxWidth | heightmaxHeight ) rateWidth = width / maxWidth; rateHeight = height / maxHeight; if( rateWidth rateHeight ) param.width = maxWidth; param.height = Math.round(height / rateWidth); else param.width = Math.round(width / rateHeight); param.height = maxHeight; param.left = Math.round(maxWidth - param.width) / 2); param.top = Math.round(maxHeight - param.height) / 2); return param; /script /head body div id=preview img id=imghead width=100 height=100 borde

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论