Dropify.js图片宽高自适应的方法

前端之家收集整理的这篇文章主要介绍了Dropify.js图片宽高自适应的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近发现了一个比较好用的图片上传插件, Dropify.js ,具体使用方法挺简单的,这里就不介绍了。

但是由于我希望图片样式是宽度固定,高度自适应的,而这个插件好像无法自适应高度,只能在固定的区域内显示图片,看的非常不舒服。

看了一下插件的源码,发现可以在预览图片时,调整图片高度。需要修改css和js,下面贴下代码

css可以写在自己的css文件中:

图片的容器*/ .title-img{ width:660px; margin:40px auto 0; }

/下面是需要修改的样式/
.dropify-wrapper .dropify-preview{
padding:0 !important;
}
.dropify-wrapper .dropify-preview .dropify-render img{
width:100%;
height:auto;
-webkit-transform:none;
transform:none;
top:0;
}
.dropify-wrapper{
border:0;
background-color:#f7f8f9;
padding:0!important;
}

下面是js需要修改的部分,打开源码文件,找到Dropify.prototype.setPreview方法

// 存一下wrapper,wrapper.width()是css中自己设置的固定的宽,我设置的是660px var wrapper = this.wrapper; // 首次<a href="https://www.jb51.cc/tag/shangchuan/" target="_blank" class="keywords">上传</a>时,<a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a><a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a>真实的宽和高,按比例计算<a href="https://www.jb51.cc/tag/xianshi/" target="_blank" class="keywords">显示</a>时<a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a>的高 var height = (wrapper.width() / this.file.width) * this.file.height; // 如果初始化时使用默认<a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a>,则file.height不存在,需要用另一种方式<a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a><a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a>真实的宽和高 if(!height){ // 新建一个image,将<a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a>路径赋给新的image var i = new Image(),src = Comm.getRoot() + src; i.src = src; // 这里需要等<a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a>加载完,才能<a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a>到准确的宽和高。 $(i).load(function(){ // 计算方式和上面相同 height = (wrapper.width() / i.width) * i.height; wrapper.height(height); }); } else { wrapper.height(height); } var imgTag = $('<img />').attr('src',src); if (this.settings.height) { imgTag.css("max-height",this.settings.height); } imgTag.appendTo(render);

} else {
$('').attr('class','dropify-font-file').appendTo(render);
$('').html(this.getFileType()).appendTo(render);
}
this.preview.fadeIn();
};

改造完成后,不管上传还是默认图片,都可以宽度固定,高度自适应了。改造完成后效果

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/js/35003.html

猜你在找的JavaScript相关文章