使用jQuery在上传图片之前实现缩略图预览
jopen
11年前
使用jQuery在上传图片之前实现缩略图预览
jQuery代码
$("#uploadImage").on("change", function(){ // Get a reference to the fileList var files = !!this.files ? this.files : []; // If no files were selected, or no FileReader support, return if (!files.length || !window.FileReader) return; // Only proceed if the selected file is an image if (/^image/.test( files[0].type)){ // Create a new instance of the FileReader var reader = new FileReader(); // Read the local file as a DataURL reader.readAsDataURL(files[0]); // When loaded, set image data as background of div reader.onloadend = function(){ $("#uploadPreview").css("background-image", "url("+this.result+")"); } } });
以下是HTML代码,包含一个显示缩略图的div和一个file input field。
HTML代码
<div id="uploadPreview"></div> <input id="uploadImage" type="file" name="photoimage" class="fimg1" onchange="PreviewImage();" />
为我们的缩略图设置CSSwa 。
CSS代码
#uploadPreview { width: 168px; height: 168px; background-position: center center; background-size: cover; border: 4px solid #fff; -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, .3); display: inline-block;