我正在使用以下代码上传图片以供查看,然后再将其传递到我的服务器。我想用css限制图像的大小。 CSS对图像没有影响,因为它是由输出呈现的。有没有解决的办法?我尝试将CSS属性添加到其周围的div中,但这也无效。
HTML:
<input type="file" id="files" name="files[]" file-model="myFile"/>
<output id="list" class="resize-image" alt="Image"></output>
CSS:
#list{
max-width: 15px;
max-height: 7px;
}
Javascript:
var handleFileSelect = function (evt) {//already set up for multiple files; not what i want to do.
var files = evt.target.files; // FileList object
// Loop through the FileList and render image files as thumbnails.
for (var i = 0, f; f = files[i]; i++) {
// Only process image files.
if (!f.type.match('image.*')) {
continue;
}
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(e) {
// Render thumbnail.
var span = document.createElement('span');
span.innerHTML = ['<img class="thumb" src="', e.target.result,
'" title="', escape(theFile.name), '"/>'].join('');
document.getElementById('list').insertBefore(span, null);
};
})(f);
// Read in the image file as a data URL.
reader.readAsDataURL(f);
}
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);
答案 0 :(得分:1)
简单就是使用height
和width
img
代码属性。
var span = document.createElement('span');
span.innerHTML = ['<img height="7" width="15" class="thumb" src="', e.target.result,
'" title="', escape(theFile.name), '"/>'].join('');
document.getElementById('list').insertBefore(span, null);
如果您真的想使用.css
执行此任务,可以使用background-size
,但必须使用background
中css
的图片设置img
属性。
您也可以像这样覆盖css
中的img{
max-width: 100px;
max-height: 100px;
}
代码:
{{1}}
您可以在这里测试两种方法:http://www.w3schools.com/cssref/tryit.asp?filename=trycss3_background-size