This commit is contained in:
cookfront 2017-03-07 10:30:32 +08:00
parent 79ca7631e0
commit 0ba9333634
3 changed files with 27 additions and 27 deletions

View File

@ -29,9 +29,9 @@
},
style() {
const padding = `${this.gutter / 2}px`;
return this.gutter ?
{ paddingLeft: padding, paddingRight: padding } :
null;
return this.gutter
? { paddingLeft: padding, paddingRight: padding }
: null;
}
}
};

View File

@ -47,30 +47,30 @@ export default {
* 根据屏幕自适应显示最长边
*/
computeImageStyle() {
const previewSize = this.$refs.previewContainer.getBoundingClientRect();
const img = new Image();
const _this = this;
// const previewSize = this.$refs.previewContainer.getBoundingClientRect();
// const img = new Image();
// const _this = this;
img.onload = function() {
const imgRatio = parseFloat(this.width / this.height);
const previewRatio = parseFloat(previewSize.width / previewSize.height);
// img.onload = function() {
// const imgRatio = parseFloat(this.width / this.height);
// const previewRatio = parseFloat(previewSize.width / previewSize.height);
if (previewRatio <= imgRatio) {
const top = (previewSize.height - parseInt(previewSize.width / imgRatio, 10)) / 2;
_this.imageStyle = {
width: '100%',
height: 'auto',
top: top + 'px'
};
} else if (previewRatio > imgRatio) {
_this.imageStyle = {
width: 'auto',
height: '100%'
};
}
};
// if (previewRatio <= imgRatio) {
// const top = (previewSize.height - parseInt(previewSize.width / imgRatio, 10)) / 2;
// _this.imageStyle = {
// width: '100%',
// height: 'auto',
// top: top + 'px'
// };
// } else if (previewRatio > imgRatio) {
// _this.imageStyle = {
// width: 'auto',
// height: '100%'
// };
// }
// };
img.src = this.image;
// img.src = this.image;
},
close() {

View File

@ -20,9 +20,9 @@
style() {
const gutter = Number(this.gutter);
const margin = `-${gutter / 2}px`;
return gutter ?
{ marginLeft: margin, marginRight: margin } :
{};
return gutter
? { marginLeft: margin, marginRight: margin }
: {};
}
}
};