頁面上的應用大多都有在我的信息管理中設置頭像的這麼一個功能,而對於實現這個功能前提就是上傳頭像的功能,而當上傳完成便可預覽是全部後續操做的前提。在網上巴拉了一番,而後整理了一下,拼湊了一個小demo供你們學習。本博文出自博客園,做者Red,聯繫郵箱 it_red@sina.com,轉載請保留本文原文連接http://www.cnblogs.com/itred/p/5723864.html。javascript
這個demo基本能夠實現頁面上打開頁面後,點擊上傳頭像圖片的按鈕,通過選擇,上傳成功後便可在頁面指定位置顯示剛剛確認上傳完成的圖片,這個圖片的大小是通過默認設置的,對於頁面的樣式,圖片的大小等這些均可以根據本身的實際應用進行調整,最重要的是這個功能基本可用,並且兼容多個瀏覽器,不會出現瀏覽器不兼容的問題,若是還有瀏覽器沒有測出來,請各位指出,以便進一步優化,在此表示感謝。css
說一下開發環境,我用的是idea完成的,可是這個demo並不依賴開發環境,實際上就是一個html和一張默認的圖片,其實就是最基礎的js實現的。所以通常人均可以看懂,並且還能夠進一步進行擴展。html
1.style樣式設置:java
<title>圖片上傳本地預覽</title> <style type="text/css"> #preview{ width: 180px; height: 183px; border: 1px solid gray; overflow: hidden; } #imghead{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=image); } </style>
2. 核心javascript:git
<script type="text/javascript"> function previewImage(file) { var MAXWIDTH = 180; var MAXHEIGHT = 180; var div = document.getElementById('preview'); if (file.files && file.files[0]) { div.innerHTML = '<img id=imghead>'; var img = document.getElementById('imghead'); img.onload = function () { var rect = clacImgZoomParam(MAXWIDTH, 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.files[0]); }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.AlphaImageLoader').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>"; } } function clacImgZoomParam( maxWidth, maxHeight, width, height ){ var param = {top:0, left:0, width:width, height:height}; if( width>maxWidth || height>maxHeight ){ 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>
3. body佈局以下:github
<body> <div id="preview"> <img id="imghead" border=0 src="img/head_180.jpg" width="180" height="180" /> </div> <input type="file" onchange="previewImage(this)" /> </body>
基本就是完成了。demo的源碼下載請點擊我,運行效果以下:瀏覽器
做者:Red 博客:http://itred.cnblogs.com
GitHub:https://github.com/itRed ide
版權聲明:本文版權歸做者和博客園共有,歡迎轉載,但未經做者贊成必須保留此段說明,
且在文章明顯位置給出原文連接,不然保留追究法律責任的權利。佈局